From fe792a5e49ad6aa8f71efab9b102bfe83a44b18e Mon Sep 17 00:00:00 2001 From: Fernando Raya Date: Sun, 16 Feb 2025 19:10:22 +0100 Subject: [PATCH] Update conf.py - Add options to link documentation with Github - Comment non existing static path to avoid warning --- documentation/source/conf.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/documentation/source/conf.py b/documentation/source/conf.py index f1606f6..e37945f 100644 --- a/documentation/source/conf.py +++ b/documentation/source/conf.py @@ -51,9 +51,13 @@ # a list of builtin themes. # html_theme = 'furo' -# html_theme = dylan_themes.get_html_theme_default() +html_theme_options = { + 'source_repository': 'https://github.com/fraya/v3d', + 'source_branch': 'main', + 'source_directory': 'documentation/source', +} # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, # so a file named "default.css" will overwrite the builtin "default.css". -html_static_path = ['_static'] +# html_static_path = ['_static']