docs: Reveal 3 nav levels in primary sidebar

and also allow a max level of 3 to expand.
This commit is contained in:
J0J0 Todos 2025-08-31 07:36:03 +02:00 committed by Šarūnas Nejus
parent 33f1a5d0be
commit fddda507ea
No known key found for this signature in database
GPG key ID: DD28F6704DBE3435

View file

@ -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"]