1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
From: Martina Ferrari <tina@debian.org>
Date: Mon, 30 May 2022 16:38:53 +0200
Subject: docs: Disable html_static_path and html_js_files
Remove non-existent included files in Sphinx config.
Forwarded: Not-Needed
---
docs/conf.py | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/docs/conf.py b/docs/conf.py
index 4781d82..31dfc95 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -97,11 +97,11 @@ html_theme = "alabaster"
# 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"]
-html_js_files = [
- "js/custom.js",
-]
+#html_js_files = [
+# "js/custom.js",
+#]
# -- Options for HTMLHelp output ------------------------------------------
|