Fix config value name

This commit is contained in:
Septatrix 2020-03-08 14:23:31 +01:00
parent 5481d6da05
commit d42e4c9a12

View File

@ -1214,7 +1214,7 @@ def setup(app: Sphinx) -> Dict[str, Any]:
app.add_config_value('html_style', None, 'html', [str])
app.add_config_value('html_logo', None, 'html', [str])
app.add_config_value('html_favicon', None, 'html', [str])
app.add_config_value('html_pygments_dark', None, 'html', [str])
app.add_config_value('html_pygments_dark_style', None, 'html', [str])
app.add_config_value('html_pygments_aux_styles', {}, 'html')
app.add_config_value('html_css_files', [], 'html')
app.add_config_value('html_js_files', [], 'html')