mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
Fix config value name
This commit is contained in:
parent
d42e4c9a12
commit
0abb05c863
@ -285,8 +285,8 @@ class StandaloneHTMLBuilder(Builder):
|
|||||||
def init_aux_highlighters(self) -> None:
|
def init_aux_highlighters(self) -> None:
|
||||||
self.aux_highlighters = \
|
self.aux_highlighters = \
|
||||||
{} # type: Dict[str, Tuple[PygmentsBridge, Union[str, Iterable[str]]]]
|
{} # type: Dict[str, Tuple[PygmentsBridge, Union[str, Iterable[str]]]]
|
||||||
if self.config.html_aux_pygments_styles is not None:
|
if self.config.html_pygments_aux_styles is not None:
|
||||||
aux_styles = self.config.html_aux_pygments_styles.items()
|
aux_styles = self.config.html_pygments_aux_styles.items()
|
||||||
elif self.theme and self.theme.config.has_section('auxiliary_styles'):
|
elif self.theme and self.theme.config.has_section('auxiliary_styles'):
|
||||||
aux_styles = self.theme.config.items('options')
|
aux_styles = self.theme.config.items('options')
|
||||||
for style, css_selector in aux_styles.items():
|
for style, css_selector in aux_styles.items():
|
||||||
|
Loading…
Reference in New Issue
Block a user