aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorLuc Van Oostenryck <luc.vanoostenryck@gmail.com>2020-06-13 01:35:22 +0200
committerLuc Van Oostenryck <luc.vanoostenryck@gmail.com>2020-06-13 02:42:11 +0200
commit83c492956bc5c4473bb69f058d06d9e098a2edbb (patch)
treed8cfac67ea96c394867156fae49e9026dbefa00b
parentbcc11c748107078e0df35ae5b09de519f0d8781c (diff)
downloadsparse-83c492956bc5c4473bb69f058d06d9e098a2edbb.tar.gz
doc: show the ToC in the sidebar
With the configured theme, 'classic', the table of contents didn't show up in the sidebar. It seems it was because 'html_sidebars' was partially set in conf.py, overhidding the theme defaults. Fix this by removing 'html_sidebars' from the config. Signed-off-by: Luc Van Oostenryck <luc.vanoostenryck@gmail.com>
-rw-r--r--Documentation/conf.py7
1 files changed, 1 insertions, 6 deletions
diff --git a/Documentation/conf.py b/Documentation/conf.py
index aae9d39b..90583908 100644
--- a/Documentation/conf.py
+++ b/Documentation/conf.py
@@ -113,12 +113,7 @@ html_theme = 'classic'
#
# This is required for the alabaster theme
# refs: http://alabaster.readthedocs.io/en/latest/installation.html#sidebars
-html_sidebars = {
- '**': [
- 'relations.html', # needs 'show_related': True theme option to display
- 'searchbox.html',
- ]
-}
+html_sidebars = { }
html_logo = 'logo.svg'