# HG changeset patch # User Franz Glasner # Date 1777310263 -7200 # Node ID 0ff291eac6635f80e41c665145cbb5702eea521f # Parent fe7fe4caf9783d7dc0489eba73e5ee34432627cc Minimal Sphinx configuration for the first tests diff -r fe7fe4caf978 -r 0ff291eac663 docs/conf.py --- a/docs/conf.py Mon Apr 27 19:17:13 2026 +0200 +++ b/docs/conf.py Mon Apr 27 19:17:43 2026 +0200 @@ -26,20 +26,27 @@ version = release del relfp + # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration -extensions = [] +extensions = [ + "sphinx.ext.todo", +] templates_path = ['_templates'] exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] -pygments_tyle = "sphinx" -#pygments_style = "default" + +# --- Options for todo extension --------------------------------------------- +todo_include_todos = True # -- Options for HTML output ------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output html_theme = 'alabaster' +html_theme = 'haiku' html_static_path = ['_static'] +#pygments_style = "sphinx" +pygments_style = "default"