changeset 60:0ff291eac663

Minimal Sphinx configuration for the first tests
author Franz Glasner <fzglas.hg@dom66.de>
date Mon, 27 Apr 2026 19:17:43 +0200
parents fe7fe4caf978
children 392745b66969
files docs/conf.py
diffstat 1 files changed, 10 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- 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"