From 83c492956bc5c4473bb69f058d06d9e098a2edbb Mon Sep 17 00:00:00 2001 From: Luc Van Oostenryck Date: Sat, 13 Jun 2020 01:35:22 +0200 Subject: 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 --- Documentation/conf.py | 7 +------ 1 file changed, 1 insertion(+), 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' -- cgit 1.2.3-korg