diff options
Diffstat (limited to 'docs/conf.py')
| -rw-r--r-- | docs/conf.py | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/docs/conf.py b/docs/conf.py index 47863a06..1712f2a7 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -13,7 +13,10 @@ author = "Felix Morgner" # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration -extensions = ["breathe"] +extensions = [ + "sphinx.ext.todo", + "breathe", +] templates_path = ["_templates"] exclude_patterns = ["pre/**"] @@ -25,6 +28,11 @@ breathe_projects = {"kernel": "../build/doxygen/xml"} breathe_default_project = "kernel" breathe_default_members = ('members', 'undoc-members', 'protected-members', 'private-members') +# -- Options todo --------------------------------------------------------- +# https://www.sphinx-doc.org/en/master/usage/extensions/todo.html + +todo_include_todos = True + # -- Options for HTML output ------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output |
