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 32 33 34 35 36 37 38 39 40 41 42 43
|
From: Gordon Ball <gordon@chronitis.net>
Date: Tue, 15 Sep 2020 12:50:42 +0000
Subject: Documentation fixes
Forwarded: Debian-specific
---
docs/autogen_config.py | 2 +-
docs/conf.py | 2 --
2 files changed, 1 insertion(+), 3 deletions(-)
diff --git a/docs/autogen_config.py b/docs/autogen_config.py
index 5b015bb..5163d10 100644
--- a/docs/autogen_config.py
+++ b/docs/autogen_config.py
@@ -41,7 +41,7 @@ try:
except NameError:
indir = os.getcwd()
-destination = os.path.join(indir, "reference/config_options.rst")
+destination = os.path.join(indir, "config_options.rst")
with open(destination, "w") as f:
app = NbClientApp()
diff --git a/docs/conf.py b/docs/conf.py
index 66856e3..809d28c 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -39,7 +39,6 @@ extensions = [
"sphinx.ext.mathjax",
"sphinx.ext.napoleon",
# 'autodoc_traits', # TODO
- "myst_parser",
]
try:
@@ -103,7 +102,6 @@ default_role = "any"
# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
#
-html_theme = "sphinx_book_theme"
# Theme options are theme-specific and customize the look and feel of a theme
# further. For a list of options available for each theme, see the
|