From e9dd3456016241d857cde540ef6c9a5f9a605ea2 Mon Sep 17 00:00:00 2001 From: J0J0 Todos Date: Thu, 21 Sep 2023 07:23:47 +0200 Subject: [PATCH] Fixate sidebar in docs Alabaster theme This is a quickfix to get back the behaviour we previously had with the readthedocs theme. There could be adjusted and fixed more, but postpone that and do in a proper PR. --- docs/conf.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/conf.py b/docs/conf.py index cb7596c55..ddd63e962 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -49,3 +49,8 @@ man_pages = [ ('reference/config', 'beetsconfig', 'beets configuration file', [AUTHOR], 5), ] + +# Options for Alabaster theme +html_theme_options = { + "fixed_sidebar": True +}