File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -281,7 +281,7 @@ def parse_pi(self, i: int) -> int:
281281 def parse_html_declaration (self , i : int ) -> int :
282282 if self .at_line_start () or self .intail or self .mdstack :
283283 if self .rawdata [i :i + 3 ] == '<![' and not self .rawdata [i :i + 9 ] == '<![CDATA[' :
284- # We have encountered the bug in #1534 (Python bug gh-77057).
284+ # We have encountered the bug in #1534 (Python bug ` gh-77057` ).
285285 # Provide an override until we drop support for Python < 3.13.
286286 return self .parse_bogus_comment (i )
287287 # The same override exists in `HTMLExtractor` without the check
Original file line number Diff line number Diff line change @@ -276,7 +276,7 @@ def parse_pi(self, i: int) -> int:
276276 def parse_html_declaration (self , i : int ) -> int :
277277 if self .at_line_start () or self .intail :
278278 if self .rawdata [i :i + 3 ] == '<![' and not self .rawdata [i :i + 9 ] == '<![CDATA[' :
279- # We have encountered the bug in #1534 (Python bug gh-77057).
279+ # We have encountered the bug in #1534 (Python bug ` gh-77057` ).
280280 # Provide an override until we drop support for Python < 3.13.
281281 return self .parse_bogus_comment (i )
282282 return super ().parse_html_declaration (i )
You can’t perform that action at this time.
0 commit comments