File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
myst_parser/mdit_to_docutils Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -716,8 +716,9 @@ def render_fence(self, token: SyntaxTreeNode) -> None:
716
716
if not name and self .sphinx_env is not None :
717
717
# use the current highlight setting, via the ``highlight`` directive,
718
718
# or ``highlight_language`` configuration.
719
- name = self .sphinx_env .temp_data .get (
720
- "highlight_language" , self .sphinx_env .config .highlight_language
719
+ name = (
720
+ self .sphinx_env .temp_data .get ("highlight_language" )
721
+ or self .sphinx_env .config .highlight_language
721
722
)
722
723
723
724
lineno_start = 1
Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ usedevelop = true
20
20
deps =
21
21
sphinx7: sphinx>=7,<8
22
22
sphinx8: sphinx>=8,<9
23
+ pygments<2.19 # TODO fix test regression with 2.19
23
24
extras =
24
25
linkify
25
26
testing
You can’t perform that action at this time.
0 commit comments