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
|
Description: Remove dependency on the same package and use sphinx-rtd-theme
Author: Ananthu C V <weepingclown@disroot.org>
Forwarded: not-needed
Last-Update: 2024-03-30
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -11,15 +11,15 @@
# -- General configuration ---------------------------------------------------
-extensions = ["myst_parser", "sphinx_copybutton", "sphinx_examples"]
+extensions = ["myst_parser", "sphinx_copybutton"]
templates_path = []
master_doc = "index"
language = None
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]
# -- Options for HTML output -------------------------------------------------
-html_theme = "sphinx_book_theme"
-# html_theme = "sphinx_rtd_theme"
+# html_theme = "sphinx_book_theme"
+html_theme = "sphinx_rtd_theme"
# html_theme = "furo"
html_theme_options = {
|