From fddda507ea25dca2cecd6df23b78b7cf361942b4 Mon Sep 17 00:00:00 2001 From: J0J0 Todos Date: Sun, 31 Aug 2025 07:36:03 +0200 Subject: [PATCH] docs: Reveal 3 nav levels in primary sidebar and also allow a max level of 3 to expand. --- docs/conf.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index d0f8cdffe..840c55a3b 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -81,7 +81,12 @@ man_pages = [ html_theme = "pydata_sphinx_theme" -html_theme_options = {"collapse_navigation": True, "logo": {"text": "beets"}} +html_theme_options = { + "collapse_navigation": False, + "logo": {"text": "beets"}, + "show_nav_level": 3, # How many levels in left sidebar to show automatically + "navigation_depth": 4, # How many levels of navigation to expand +} html_title = "beets" html_logo = "_static/beets_logo_nobg.png" html_static_path = ["_static"]