Revert some configuration options

* reuse html builder
* rename videos extension to youtube_frame
* remove HTML body max/min parameters
* remove reference to release number in HTML title
This commit is contained in:
parulin 2025-08-12 09:25:54 -04:00
parent f9cbfad0a3
commit 43dd7426b1
No known key found for this signature in database
GPG key ID: BC3830B42F4BF1F5
4 changed files with 3 additions and 5 deletions

View file

@ -10,7 +10,7 @@ submodules:
recursive: true
sphinx:
builder: dirhtml
builder: html
configuration: conf.py
fail_on_warning: false

View file

View file

@ -32,7 +32,7 @@ extensions = [
'sphinx.ext.autosectionlabel',
'sphinxnotes.strike',
'sphinx_reredirects',
'videos',
'youtube_frame',
]
redirects = {
@ -72,12 +72,10 @@ exclude_patterns = [
html_theme = 'sphinx_rtd_theme'
html_title = f'{project} {release} Documentation'
html_title = f'{project} Documentation'
html_theme_options = {
'style_external_links': True,
'body_min_width': '50%',
'body_max_width': '90%',
'collapse_navigation': True,
}