From 47efcb4b5a22e9581e0366a4750b446f17d95b81 Mon Sep 17 00:00:00 2001 From: Georg Krause Date: Wed, 1 Nov 2023 13:16:32 +0000 Subject: [PATCH] fix(docs): Use correct path configs Part-of: --- docs/conf.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index 8d6185431..59c467392 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -46,9 +46,9 @@ extensions = [ source_suffix = ".md" include_patterns = [ "_static/**", - "_templates/**", "*_documentation/**", "*.md", + "**/*.md", "*.rst", "logo.svg", ] @@ -61,6 +61,7 @@ exclude_patterns = [ "*.py", "*.sh", ] +templates_path = ["_templates"] root_doc = "index"