refactor(conf): migrate to toml

This commit is contained in:
Rodney, Tiara 2025-03-23 01:49:03 +01:00
parent effe9c435f
commit 554d7ccbfc
No known key found for this signature in database
GPG key ID: 5CD8EC1D46106723
2 changed files with 24 additions and 16 deletions

View file

@ -1,16 +0,0 @@
[theme]
inherit = none
stylesheet = main.css
pygments_style = none
sidebars = localtoc.html, relations.html, sourcelink.html, searchbox.html
[options]
nosidebar = false
sidebarwidth = 230
body_min_width = 360
body_max_width = 800
navigation_with_keys = False
enable_search_shortcuts = True
globaltoc_collapse = true
globaltoc_includehidden = false
globaltoc_maxdepth =

View file

@ -0,0 +1,24 @@
[theme]
inherit = "basic"
stylesheets = [
"style/main.css",
]
sidebars = [
"localtoc.html",
"relations.html",
"sourcelink.html",
"searchbox.html",
]
# Style names from https://pygments.org/styles/
pygments_style = { default = "style_name", dark = "dark_style" }
[options]
nosidebar = false
sidebarwidth = 230
body_min_width = 360
body_max_width = 800
navigation_with_keys = False
enable_search_shortcuts = True
globaltoc_collapse = true
globaltoc_includehidden = false
globaltoc_maxdepth =