diff --git a/.buildinfo b/.buildinfo index 110b37b..49ba1f1 100644 --- a/.buildinfo +++ b/.buildinfo @@ -1,4 +1,4 @@ # Sphinx build info version 1 # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. -config: fe6947f83fa26f50f8c2efc517f4b089 +config: a1a96859050e2209ffbdebdc3d9bdf96 tags: 645f666f9bcd5a90fca523b33c5a78b7 diff --git a/CONTRIBUTE.html b/CONTRIBUTE.html index d82f8b5..95e297f 100644 --- a/CONTRIBUTE.html +++ b/CONTRIBUTE.html @@ -39,9 +39,9 @@ - - + + @@ -67,7 +67,7 @@ - + @@ -787,7 +787,7 @@
- Last updated on 'Thu Oct 12 18:11:55 2023', 'b9ae21d'.
+ Last updated on 'Fri Oct 20 10:35:35 2023', 'c06cb1e'.
Source code for doxysphinx.cli
Source code for doxysphinx.doxygen
import shutil
from dataclasses import dataclass
from pathlib import Path
-from typing import Any, Dict, List, Union
+from typing import Any, Dict, List, Tuple, Union, cast
import pyjson5
@@ -449,7 +449,7 @@ Source code for doxysphinx.doxygen
pure_text = os.linesep.join([line for line in lines if _is_config_line(line)])
ParserElement.set_default_whitespace_chars(" \t")
- line_end = LineEnd() if os.linesep == "\n" else White("\r\n")
+ line_end = White("\r\n") | LineEnd()
doxy_flag = Word(srange("[A-Z_]")) + FollowedBy("=")
list_items = delimited_list(
@@ -513,6 +513,18 @@ Source code for doxysphinx.doxygen
}
"""A dictionary containing further optional settings for the doxygen config."""
+ @staticmethod
+ def _normalize_option(key: str, value: Union[str, List[str]]) -> Union[str, List[str]]:
+ """Normalize incoming value before comparing to recommended/mandatory setting."""
+ if key in ("OUTPUT_DIRECTORY", "GENERATE_TAGFILE"):
+ return Path(cast(str, value)).as_posix()
+
+ return value
+
+ @classmethod
+ def _normalize_item(cls, kv: Tuple[str, Union[str, List[str]]]) -> Tuple[str, Union[str, List[str]]]:
+ return (kv[0], cls._normalize_option(kv[0], kv[1]))
+
validation_errors: List[str] = []
"""List of the validation errors including the doxyflag with its used and the correct value."""
absolute_out: Path
@@ -556,10 +568,10 @@ Source code for doxysphinx.doxygen
self.absolute_out = path_resolve(out)
stringified_out = str(out) if out.is_absolute() else f'"{out}" (resolved to "{self.absolute_out}")'
- self.mandatory_settings["OUTPUT_DIRECTORY"] = str(config["OUTPUT_DIRECTORY"])
+ self.mandatory_settings["OUTPUT_DIRECTORY"] = Path(cast(str, config["OUTPUT_DIRECTORY"])).as_posix()
if path_is_relative_to(out, sphinx_source_dir):
- self.optional_settings["GENERATE_TAGFILE"] = os.path.relpath(out / "tagfile.xml", doxygen_cwd)
+ self.optional_settings["GENERATE_TAGFILE"] = out.joinpath("tagfile.xml").relative_to(doxygen_cwd).as_posix()
return True
else:
self.optional_settings["GENERATE_TAGFILE"] = "docs/doxygen/demo/html/tagfile.xml" # default value
@@ -573,7 +585,7 @@ Source code for doxysphinx.doxygen
imported_settings = settings
target_settings = self.mandatory_settings
validation_successful = True
- if all(item in imported_settings.items() for item in target_settings.items()):
+ if all(self._normalize_item(item) in imported_settings.items() for item in target_settings.items()):
return validation_successful
contained_settings_target = {
@@ -589,7 +601,8 @@ Source code for doxysphinx.doxygen
validation_successful = False
for key in contained_settings_target.keys():
- if not contained_settings_target[key] == target_settings[key]:
+ contained_setting = self._normalize_option(key, contained_settings_target[key])
+ if not contained_setting == target_settings[key]:
self.validation_errors.append(
(
f"Error: Wrong value {contained_settings_target[key]} for {key}, {target_settings[key]} is required."
@@ -603,7 +616,7 @@ Source code for doxysphinx.doxygen
imported_settings = settings
target_settings = self.optional_settings
validation_successful = True
- if all(item in imported_settings.items() for item in target_settings.items()):
+ if all(self._normalize_item(item) in imported_settings.items() for item in target_settings.items()):
return validation_successful
contained_settings_target = {
@@ -619,7 +632,8 @@ Source code for doxysphinx.doxygen
validation_successful = False
for key in contained_settings_target.keys():
- if not contained_settings_target[key] == target_settings[key]:
+ contained_setting = self._normalize_option(key, contained_settings_target[key])
+ if not contained_setting == target_settings[key]:
self.validation_errors.append(
(
f"Hint: Wrong value {contained_settings_target[key]} for {key}, {target_settings[key]} is recommended."
@@ -701,7 +715,7 @@ Source code for doxysphinx.doxygen
Source code for doxysphinx.html_parser
Source code for doxysphinx.process
Source code for doxysphinx.resources
Source code for doxysphinx.sphinx
Source code for doxysphinx.toc
Source code for doxysphinx.utils.contexts
Source code for doxysphinx.utils.exceptions
Source code for doxysphinx.utils.files
Source code for doxysphinx.utils.iterators
Source code for doxysphinx.utils.pathlib_fix
- Last updated on 'Thu Oct 12 18:11:55 2023', 'b9ae21d'.
+ Last updated on 'Fri Oct 20 10:35:35 2023', 'c06cb1e'.
diff --git a/_modules/doxysphinx/utils/rst.html b/_modules/doxysphinx/utils/rst.html
index 20143fa..c3ebf7e 100644
--- a/_modules/doxysphinx/utils/rst.html
+++ b/_modules/doxysphinx/utils/rst.html
@@ -38,9 +38,9 @@
-
-
+
+
@@ -64,7 +64,7 @@
-
+
@@ -413,7 +413,7 @@ Source code for doxysphinx.utils.rst
Source code for doxysphinx.writer
All modules for which code is available
diff --git a/_modules/re.html b/_modules/re.html
index 432dc45..5a308bf 100644
--- a/_modules/re.html
+++ b/_modules/re.html
@@ -38,9 +38,9 @@
-
-
+
+
@@ -64,7 +64,7 @@
-
+
@@ -767,7 +767,7 @@ Source code for re
Source code for typing
Doxysphinx vs Breathe vs Exhale
- Last updated on 'Thu Oct 12 18:11:55 2023', 'b9ae21d'.
+ Last updated on 'Fri Oct 20 10:35:35 2023', 'c06cb1e'.
diff --git a/_static/documentation_options.js b/_static/documentation_options.js
index a2bd80e..4945cba 100644
--- a/_static/documentation_options.js
+++ b/_static/documentation_options.js
@@ -1,6 +1,6 @@
var DOCUMENTATION_OPTIONS = {
URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'),
- VERSION: '3.3.6',
+ VERSION: '3.3.7',
LANGUAGE: 'en',
COLLAPSE_INDEX: false,
BUILDER: 'html',
diff --git a/docs/alternatives.html b/docs/alternatives.html
index 0089790..f76122e 100644
--- a/docs/alternatives.html
+++ b/docs/alternatives.html
@@ -39,9 +39,9 @@
-
-
+
+
@@ -67,7 +67,7 @@
-
+
@@ -547,7 +547,7 @@
diff --git a/docs/apidoc.html b/docs/apidoc.html
index d7b1167..ee51a17 100644
--- a/docs/apidoc.html
+++ b/docs/apidoc.html
@@ -39,9 +39,9 @@
-
-
+
+
@@ -67,7 +67,7 @@
-
+
@@ -531,7 +531,7 @@ Packages
- Last updated on 'Thu Oct 12 18:11:55 2023', 'b9ae21d'.
+ Last updated on 'Fri Oct 20 10:35:35 2023', 'c06cb1e'.
diff --git a/_modules/typing.html b/_modules/typing.html
index d76e077..680291c 100644
--- a/_modules/typing.html
+++ b/_modules/typing.html
@@ -38,9 +38,9 @@
-
-
+
+
@@ -64,7 +64,7 @@
-
+
@@ -3060,7 +3060,7 @@
diff --git a/docs/auto_api/doxysphinx/__main__/index.html b/docs/auto_api/doxysphinx/__main__/index.html
index b8b6e00..a23bad2 100644
--- a/docs/auto_api/doxysphinx/__main__/index.html
+++ b/docs/auto_api/doxysphinx/__main__/index.html
@@ -39,9 +39,9 @@
-
-
+
+
@@ -65,7 +65,7 @@
-
+
@@ -469,7 +469,7 @@ doxysphinx.__main__
diff --git a/docs/auto_api/doxysphinx/cli/index.html b/docs/auto_api/doxysphinx/cli/index.html
index bf338bb..9d95e82 100644
--- a/docs/auto_api/doxysphinx/cli/index.html
+++ b/docs/auto_api/doxysphinx/cli/index.html
@@ -39,9 +39,9 @@
-
-
+
+
@@ -67,7 +67,7 @@
-
+
@@ -650,7 +650,7 @@ Functions
- Last updated on 'Thu Oct 12 18:11:55 2023', 'b9ae21d'.
+ Last updated on 'Fri Oct 20 10:35:35 2023', 'c06cb1e'.
diff --git a/_modules/index.html b/_modules/index.html
index 7d16add..b67fe8f 100644
--- a/_modules/index.html
+++ b/_modules/index.html
@@ -38,9 +38,9 @@
-
-
+
+
@@ -64,7 +64,7 @@
-
+
@@ -401,7 +401,7 @@
diff --git a/docs/auto_api/doxysphinx/doxygen/index.html b/docs/auto_api/doxysphinx/doxygen/index.html
index 0abdd33..eacf49f 100644
--- a/docs/auto_api/doxysphinx/doxygen/index.html
+++ b/docs/auto_api/doxysphinx/doxygen/index.html
@@ -39,9 +39,9 @@
-
-
+
+
@@ -67,7 +67,7 @@
-
+
@@ -743,7 +743,7 @@ Attributes
- Last updated on 'Thu Oct 12 18:11:55 2023', 'b9ae21d'.
+ Last updated on 'Fri Oct 20 10:35:35 2023', 'c06cb1e'.
diff --git a/_modules/doxysphinx/writer.html b/_modules/doxysphinx/writer.html
index 7085748..e6be189 100644
--- a/_modules/doxysphinx/writer.html
+++ b/_modules/doxysphinx/writer.html
@@ -38,9 +38,9 @@
-
-
+
+
@@ -64,7 +64,7 @@
-
+
@@ -682,7 +682,7 @@
diff --git a/docs/auto_api/doxysphinx/html_parser/index.html b/docs/auto_api/doxysphinx/html_parser/index.html
index a992d58..59a23ff 100644
--- a/docs/auto_api/doxysphinx/html_parser/index.html
+++ b/docs/auto_api/doxysphinx/html_parser/index.html
@@ -39,9 +39,9 @@
-
-
+
+
@@ -67,7 +67,7 @@
-
+
@@ -978,7 +978,7 @@ Classes
- Last updated on 'Thu Oct 12 18:11:55 2023', 'b9ae21d'.
+ Last updated on 'Fri Oct 20 10:35:35 2023', 'c06cb1e'.
diff --git a/_modules/doxysphinx/utils/pathlib_fix.html b/_modules/doxysphinx/utils/pathlib_fix.html
index 1a896a8..7ca7227 100644
--- a/_modules/doxysphinx/utils/pathlib_fix.html
+++ b/_modules/doxysphinx/utils/pathlib_fix.html
@@ -38,9 +38,9 @@
-
-
+
+
@@ -64,7 +64,7 @@
-
+
@@ -423,7 +423,7 @@
diff --git a/docs/auto_api/doxysphinx/index.html b/docs/auto_api/doxysphinx/index.html
index cb1583e..a333008 100644
--- a/docs/auto_api/doxysphinx/index.html
+++ b/docs/auto_api/doxysphinx/index.html
@@ -39,9 +39,9 @@
-
-
+
+
@@ -67,7 +67,7 @@
-
+
@@ -551,7 +551,7 @@ Submodules
- Last updated on 'Thu Oct 12 18:11:55 2023', 'b9ae21d'.
+ Last updated on 'Fri Oct 20 10:35:35 2023', 'c06cb1e'.
diff --git a/_modules/doxysphinx/utils/iterators.html b/_modules/doxysphinx/utils/iterators.html
index 252b43c..cfd1f75 100644
--- a/_modules/doxysphinx/utils/iterators.html
+++ b/_modules/doxysphinx/utils/iterators.html
@@ -38,9 +38,9 @@
-
-
+
+
@@ -64,7 +64,7 @@
-
+
@@ -433,7 +433,7 @@
diff --git a/docs/auto_api/doxysphinx/process/index.html b/docs/auto_api/doxysphinx/process/index.html
index c7fa967..548eb15 100644
--- a/docs/auto_api/doxysphinx/process/index.html
+++ b/docs/auto_api/doxysphinx/process/index.html
@@ -39,9 +39,9 @@
-
-
+
+
@@ -67,7 +67,7 @@
-
+
@@ -598,7 +598,7 @@ Classes
- Last updated on 'Thu Oct 12 18:11:55 2023', 'b9ae21d'.
+ Last updated on 'Fri Oct 20 10:35:35 2023', 'c06cb1e'.
diff --git a/_modules/doxysphinx/utils/files.html b/_modules/doxysphinx/utils/files.html
index 8b29268..051e368 100644
--- a/_modules/doxysphinx/utils/files.html
+++ b/_modules/doxysphinx/utils/files.html
@@ -38,9 +38,9 @@
-
-
+
+
@@ -64,7 +64,7 @@
-
+
@@ -554,7 +554,7 @@
diff --git a/docs/auto_api/doxysphinx/resources/index.html b/docs/auto_api/doxysphinx/resources/index.html
index ccb9b75..57e5c23 100644
--- a/docs/auto_api/doxysphinx/resources/index.html
+++ b/docs/auto_api/doxysphinx/resources/index.html
@@ -39,9 +39,9 @@
-
-
+
+
@@ -67,7 +67,7 @@
-
+
@@ -679,7 +679,7 @@ Classes
- Last updated on 'Thu Oct 12 18:11:55 2023', 'b9ae21d'.
+ Last updated on 'Fri Oct 20 10:35:35 2023', 'c06cb1e'.
diff --git a/_modules/doxysphinx/utils/exceptions.html b/_modules/doxysphinx/utils/exceptions.html
index d0f472b..943b211 100644
--- a/_modules/doxysphinx/utils/exceptions.html
+++ b/_modules/doxysphinx/utils/exceptions.html
@@ -38,9 +38,9 @@
-
-
+
+
@@ -64,7 +64,7 @@
-
+
@@ -419,7 +419,7 @@
diff --git a/docs/auto_api/doxysphinx/sphinx/index.html b/docs/auto_api/doxysphinx/sphinx/index.html
index bf15f0a..6566a25 100644
--- a/docs/auto_api/doxysphinx/sphinx/index.html
+++ b/docs/auto_api/doxysphinx/sphinx/index.html
@@ -39,9 +39,9 @@
-
-
+
+
@@ -67,7 +67,7 @@
-
+
@@ -587,7 +587,7 @@ Classes
- Last updated on 'Thu Oct 12 18:11:55 2023', 'b9ae21d'.
+ Last updated on 'Fri Oct 20 10:35:35 2023', 'c06cb1e'.
diff --git a/_modules/doxysphinx/utils/contexts.html b/_modules/doxysphinx/utils/contexts.html
index fe1f7f2..767b010 100644
--- a/_modules/doxysphinx/utils/contexts.html
+++ b/_modules/doxysphinx/utils/contexts.html
@@ -38,9 +38,9 @@
-
-
+
+
@@ -64,7 +64,7 @@
-
+
@@ -453,7 +453,7 @@
diff --git a/docs/auto_api/doxysphinx/toc/index.html b/docs/auto_api/doxysphinx/toc/index.html
index 6b5466f..fd8c070 100644
--- a/docs/auto_api/doxysphinx/toc/index.html
+++ b/docs/auto_api/doxysphinx/toc/index.html
@@ -39,9 +39,9 @@
-
-
+
+
@@ -67,7 +67,7 @@
-
+
@@ -599,7 +599,7 @@ Classes
- Last updated on 'Thu Oct 12 18:11:55 2023', 'b9ae21d'.
+ Last updated on 'Fri Oct 20 10:35:35 2023', 'c06cb1e'.
diff --git a/_modules/doxysphinx/toc.html b/_modules/doxysphinx/toc.html
index 5679ee3..2c93f50 100644
--- a/_modules/doxysphinx/toc.html
+++ b/_modules/doxysphinx/toc.html
@@ -38,9 +38,9 @@
-
-
+
+
@@ -64,7 +64,7 @@
-
+
@@ -664,7 +664,7 @@
diff --git a/docs/auto_api/doxysphinx/utils/contexts/index.html b/docs/auto_api/doxysphinx/utils/contexts/index.html
index a9c561e..c22f62e 100644
--- a/docs/auto_api/doxysphinx/utils/contexts/index.html
+++ b/docs/auto_api/doxysphinx/utils/contexts/index.html
@@ -39,9 +39,9 @@
-
-
+
+
@@ -67,7 +67,7 @@
-
+
@@ -576,7 +576,7 @@ Classes
- Last updated on 'Thu Oct 12 18:11:55 2023', 'b9ae21d'.
+ Last updated on 'Fri Oct 20 10:35:35 2023', 'c06cb1e'.
diff --git a/_modules/doxysphinx/sphinx.html b/_modules/doxysphinx/sphinx.html
index 2ceee79..ad32dc9 100644
--- a/_modules/doxysphinx/sphinx.html
+++ b/_modules/doxysphinx/sphinx.html
@@ -38,9 +38,9 @@
-
-
+
+
@@ -64,7 +64,7 @@
-
+
@@ -461,7 +461,7 @@
diff --git a/docs/auto_api/doxysphinx/utils/exceptions/index.html b/docs/auto_api/doxysphinx/utils/exceptions/index.html
index f3347f9..1736732 100644
--- a/docs/auto_api/doxysphinx/utils/exceptions/index.html
+++ b/docs/auto_api/doxysphinx/utils/exceptions/index.html
@@ -39,9 +39,9 @@
-
-
+
+
@@ -67,7 +67,7 @@
-
+
@@ -555,7 +555,7 @@ Module Contents
- Last updated on 'Thu Oct 12 18:11:55 2023', 'b9ae21d'.
+ Last updated on 'Fri Oct 20 10:35:35 2023', 'c06cb1e'.
diff --git a/_modules/doxysphinx/resources.html b/_modules/doxysphinx/resources.html
index 189012b..267601a 100644
--- a/_modules/doxysphinx/resources.html
+++ b/_modules/doxysphinx/resources.html
@@ -38,9 +38,9 @@
-
-
+
+
@@ -64,7 +64,7 @@
-
+
@@ -672,7 +672,7 @@
diff --git a/docs/auto_api/doxysphinx/utils/files/index.html b/docs/auto_api/doxysphinx/utils/files/index.html
index 2bac230..67f94bd 100644
--- a/docs/auto_api/doxysphinx/utils/files/index.html
+++ b/docs/auto_api/doxysphinx/utils/files/index.html
@@ -39,9 +39,9 @@
-
-
+
+
@@ -67,7 +67,7 @@
-
+
@@ -672,7 +672,7 @@ Functions
- Last updated on 'Thu Oct 12 18:11:55 2023', 'b9ae21d'.
+ Last updated on 'Fri Oct 20 10:35:35 2023', 'c06cb1e'.
diff --git a/_modules/doxysphinx/process.html b/_modules/doxysphinx/process.html
index 7694938..eab2ba2 100644
--- a/_modules/doxysphinx/process.html
+++ b/_modules/doxysphinx/process.html
@@ -38,9 +38,9 @@
-
-
+
+
@@ -64,7 +64,7 @@
-
+
@@ -609,7 +609,7 @@
diff --git a/docs/auto_api/doxysphinx/utils/index.html b/docs/auto_api/doxysphinx/utils/index.html
index 6a8f6e3..e56d483 100644
--- a/docs/auto_api/doxysphinx/utils/index.html
+++ b/docs/auto_api/doxysphinx/utils/index.html
@@ -39,9 +39,9 @@
-
-
+
+
@@ -67,7 +67,7 @@
-
+
@@ -525,7 +525,7 @@ Submodules
- Last updated on 'Thu Oct 12 18:11:55 2023', 'b9ae21d'.
+ Last updated on 'Fri Oct 20 10:35:35 2023', 'c06cb1e'.
diff --git a/_modules/doxysphinx/html_parser.html b/_modules/doxysphinx/html_parser.html
index d4deb76..a953133 100644
--- a/_modules/doxysphinx/html_parser.html
+++ b/_modules/doxysphinx/html_parser.html
@@ -38,9 +38,9 @@
-
-
+
+
@@ -64,7 +64,7 @@
-
+
@@ -970,7 +970,7 @@
diff --git a/docs/auto_api/doxysphinx/utils/iterators/index.html b/docs/auto_api/doxysphinx/utils/iterators/index.html
index d12c9b4..3b3b3a1 100644
--- a/docs/auto_api/doxysphinx/utils/iterators/index.html
+++ b/docs/auto_api/doxysphinx/utils/iterators/index.html
@@ -39,9 +39,9 @@
-
-
+
+
@@ -67,7 +67,7 @@
-
+
@@ -630,7 +630,7 @@ Attributes
- Last updated on 'Thu Oct 12 18:11:55 2023', 'b9ae21d'.
+ Last updated on 'Fri Oct 20 10:35:35 2023', 'c06cb1e'.
diff --git a/docs/auto_api/doxysphinx/utils/pathlib_fix/index.html b/docs/auto_api/doxysphinx/utils/pathlib_fix/index.html
index b1693eb..6c3686c 100644
--- a/docs/auto_api/doxysphinx/utils/pathlib_fix/index.html
+++ b/docs/auto_api/doxysphinx/utils/pathlib_fix/index.html
@@ -39,9 +39,9 @@
-
-
+
+
@@ -67,7 +67,7 @@
-
+
@@ -559,7 +559,7 @@ Functions
- Last updated on 'Thu Oct 12 18:11:55 2023', 'b9ae21d'.
+ Last updated on 'Fri Oct 20 10:35:35 2023', 'c06cb1e'.
diff --git a/docs/auto_api/doxysphinx/utils/rst/index.html b/docs/auto_api/doxysphinx/utils/rst/index.html
index 6964f9c..b2f4a0e 100644
--- a/docs/auto_api/doxysphinx/utils/rst/index.html
+++ b/docs/auto_api/doxysphinx/utils/rst/index.html
@@ -39,9 +39,9 @@
-
-
+
+
@@ -67,7 +67,7 @@
-
+
@@ -551,7 +551,7 @@ Functions
- Last updated on 'Thu Oct 12 18:11:55 2023', 'b9ae21d'.
+ Last updated on 'Fri Oct 20 10:35:35 2023', 'c06cb1e'.
diff --git a/docs/auto_api/doxysphinx/writer/index.html b/docs/auto_api/doxysphinx/writer/index.html
index 4e3b9ed..c64acef 100644
--- a/docs/auto_api/doxysphinx/writer/index.html
+++ b/docs/auto_api/doxysphinx/writer/index.html
@@ -39,9 +39,9 @@
-
-
+
+
@@ -67,7 +67,7 @@
-
+
@@ -606,7 +606,7 @@ Classes
- Last updated on 'Thu Oct 12 18:11:55 2023', 'b9ae21d'.
+ Last updated on 'Fri Oct 20 10:35:35 2023', 'c06cb1e'.
diff --git a/docs/dev_guide.html b/docs/dev_guide.html
index de0a75b..6dae299 100644
--- a/docs/dev_guide.html
+++ b/docs/dev_guide.html
@@ -39,9 +39,9 @@
-
-
+
+
@@ -67,7 +67,7 @@
-
+
@@ -712,7 +712,7 @@ Makefile targets under Windows
- Last updated on 'Thu Oct 12 18:11:55 2023', 'b9ae21d'.
+ Last updated on 'Fri Oct 20 10:35:35 2023', 'c06cb1e'.
diff --git a/docs/doxygen/demo/html/annotated.html b/docs/doxygen/demo/html/annotated.html
index b36333b..f456228 100644
--- a/docs/doxygen/demo/html/annotated.html
+++ b/docs/doxygen/demo/html/annotated.html
@@ -39,9 +39,9 @@
-
-
+
+
@@ -67,7 +67,7 @@
-
+
@@ -492,7 +492,7 @@ Class List
- Last updated on 'Thu Oct 12 18:11:55 2023', 'b9ae21d'.
+ Last updated on 'Fri Oct 20 10:35:35 2023', 'c06cb1e'.
diff --git a/docs/doxygen/demo/html/annotated_classes.html b/docs/doxygen/demo/html/annotated_classes.html
index 4540e7e..accb0f1 100644
--- a/docs/doxygen/demo/html/annotated_classes.html
+++ b/docs/doxygen/demo/html/annotated_classes.html
@@ -39,9 +39,9 @@
-
-
+
+
@@ -67,7 +67,7 @@
-
+
@@ -501,7 +501,7 @@ Classes
- Last updated on 'Thu Oct 12 18:11:55 2023', 'b9ae21d'.
+ Last updated on 'Fri Oct 20 10:35:35 2023', 'c06cb1e'.
diff --git a/docs/doxygen/demo/html/block__rst_8hpp_source.html b/docs/doxygen/demo/html/block__rst_8hpp_source.html
index ac9104b..e0a9abd 100644
--- a/docs/doxygen/demo/html/block__rst_8hpp_source.html
+++ b/docs/doxygen/demo/html/block__rst_8hpp_source.html
@@ -39,9 +39,9 @@
-
-
+
+
@@ -65,7 +65,7 @@
-
+
@@ -564,7 +564,7 @@ demo/demo/src/block_rst.hpp Source File
- Last updated on 'Thu Oct 12 18:11:55 2023', 'b9ae21d'.
+ Last updated on 'Fri Oct 20 10:35:35 2023', 'c06cb1e'.
diff --git a/docs/doxygen/demo/html/car_8hpp_source.html b/docs/doxygen/demo/html/car_8hpp_source.html
index 87c78e8..0ceea47 100644
--- a/docs/doxygen/demo/html/car_8hpp_source.html
+++ b/docs/doxygen/demo/html/car_8hpp_source.html
@@ -39,9 +39,9 @@
-
-
+
+
@@ -65,7 +65,7 @@
-
+
@@ -569,7 +569,7 @@ demo/demo/src/car.hpp Source File
- Last updated on 'Thu Oct 12 18:11:55 2023', 'b9ae21d'.
+ Last updated on 'Fri Oct 20 10:35:35 2023', 'c06cb1e'.
diff --git a/_modules/doxysphinx/doxygen.html b/_modules/doxysphinx/doxygen.html
index 5b2055f..5d0f8bd 100644
--- a/_modules/doxysphinx/doxygen.html
+++ b/_modules/doxysphinx/doxygen.html
@@ -38,9 +38,9 @@
-
-
+
+
@@ -64,7 +64,7 @@
-
+
@@ -366,7 +366,7 @@
diff --git a/docs/doxygen/demo/html/classdoxysphinx_1_1doxygen_1_1BlockRst-members.html b/docs/doxygen/demo/html/classdoxysphinx_1_1doxygen_1_1BlockRst-members.html
index 4301f34..4200f0b 100644
--- a/docs/doxygen/demo/html/classdoxysphinx_1_1doxygen_1_1BlockRst-members.html
+++ b/docs/doxygen/demo/html/classdoxysphinx_1_1doxygen_1_1BlockRst-members.html
@@ -39,9 +39,9 @@
-
-
+
+
@@ -65,7 +65,7 @@
-
+
@@ -532,7 +532,7 @@ Member List
- Last updated on 'Thu Oct 12 18:11:55 2023', 'b9ae21d'.
+ Last updated on 'Fri Oct 20 10:35:35 2023', 'c06cb1e'.
diff --git a/_modules/doxysphinx/cli.html b/_modules/doxysphinx/cli.html
index 6541a9c..e1e3e00 100644
--- a/_modules/doxysphinx/cli.html
+++ b/_modules/doxysphinx/cli.html
@@ -38,9 +38,9 @@
-
-
+
+
@@ -64,7 +64,7 @@
-
+
@@ -586,7 +586,7 @@
- Last updated on 'Thu Oct 12 18:11:55 2023', 'b9ae21d'.
+ Last updated on 'Fri Oct 20 10:35:35 2023', 'c06cb1e'.
- Last updated on 'Thu Oct 12 18:11:55 2023', 'b9ae21d'.
+ Last updated on 'Fri Oct 20 10:35:35 2023', 'c06cb1e'.
- Last updated on 'Thu Oct 12 18:11:55 2023', 'b9ae21d'.
+ Last updated on 'Fri Oct 20 10:35:35 2023', 'c06cb1e'.
- Last updated on 'Thu Oct 12 18:11:55 2023', 'b9ae21d'.
+ Last updated on 'Fri Oct 20 10:35:35 2023', 'c06cb1e'.
- Last updated on 'Thu Oct 12 18:11:55 2023', 'b9ae21d'.
+ Last updated on 'Fri Oct 20 10:35:35 2023', 'c06cb1e'.
- Last updated on 'Thu Oct 12 18:11:55 2023', 'b9ae21d'.
+ Last updated on 'Fri Oct 20 10:35:35 2023', 'c06cb1e'.
- Last updated on 'Thu Oct 12 18:11:55 2023', 'b9ae21d'.
+ Last updated on 'Fri Oct 20 10:35:35 2023', 'c06cb1e'.
- Last updated on 'Thu Oct 12 18:11:55 2023', 'b9ae21d'.
+ Last updated on 'Fri Oct 20 10:35:35 2023', 'c06cb1e'.
- Last updated on 'Thu Oct 12 18:11:55 2023', 'b9ae21d'.
+ Last updated on 'Fri Oct 20 10:35:35 2023', 'c06cb1e'.
- Last updated on 'Thu Oct 12 18:11:55 2023', 'b9ae21d'.
+ Last updated on 'Fri Oct 20 10:35:35 2023', 'c06cb1e'.
- Last updated on 'Thu Oct 12 18:11:55 2023', 'b9ae21d'.
+ Last updated on 'Fri Oct 20 10:35:35 2023', 'c06cb1e'.
- Last updated on 'Thu Oct 12 18:11:55 2023', 'b9ae21d'.
+ Last updated on 'Fri Oct 20 10:35:35 2023', 'c06cb1e'.
- Last updated on 'Thu Oct 12 18:11:55 2023', 'b9ae21d'.
+ Last updated on 'Fri Oct 20 10:35:35 2023', 'c06cb1e'.
- Last updated on 'Thu Oct 12 18:11:55 2023', 'b9ae21d'.
+ Last updated on 'Fri Oct 20 10:35:35 2023', 'c06cb1e'.
- Last updated on 'Thu Oct 12 18:11:55 2023', 'b9ae21d'.
+ Last updated on 'Fri Oct 20 10:35:35 2023', 'c06cb1e'.
- Last updated on 'Thu Oct 12 18:11:55 2023', 'b9ae21d'.
+ Last updated on 'Fri Oct 20 10:35:35 2023', 'c06cb1e'.
- Last updated on 'Thu Oct 12 18:11:55 2023', 'b9ae21d'.
+ Last updated on 'Fri Oct 20 10:35:35 2023', 'c06cb1e'.
- Last updated on 'Thu Oct 12 18:11:55 2023', 'b9ae21d'.
+ Last updated on 'Fri Oct 20 10:35:35 2023', 'c06cb1e'.
- Last updated on 'Thu Oct 12 18:11:55 2023', 'b9ae21d'.
+ Last updated on 'Fri Oct 20 10:35:35 2023', 'c06cb1e'.
- Last updated on 'Thu Oct 12 18:11:55 2023', 'b9ae21d'.
+ Last updated on 'Fri Oct 20 10:35:35 2023', 'c06cb1e'.
- Last updated on 'Thu Oct 12 18:11:55 2023', 'b9ae21d'.
+ Last updated on 'Fri Oct 20 10:35:35 2023', 'c06cb1e'.
- Last updated on 'Thu Oct 12 18:11:55 2023', 'b9ae21d'.
+ Last updated on 'Fri Oct 20 10:35:35 2023', 'c06cb1e'.
- Last updated on 'Thu Oct 12 18:11:55 2023', 'b9ae21d'.
+ Last updated on 'Fri Oct 20 10:35:35 2023', 'c06cb1e'.
- Last updated on 'Thu Oct 12 18:11:55 2023', 'b9ae21d'.
+ Last updated on 'Fri Oct 20 10:35:35 2023', 'c06cb1e'.
Demo |
Classes | |
class  | BlockRst |
 | Demonstration of block rst usage. See also Rst Block Syntax Documentation . More... |
 | |
class  | CommentStyles |
 | Demonstration of doxygen comment style usage. See also
. More... |
 | |
class  | InlineRst |
 | Demonstration of inline rst usage. See also Rst Inline Syntax Documentation -. More... |
 |