jenkins-bot has submitted this change. ( https://gerrit.wikimedia.org/r/c/pywikibot/core/+/785334 )
Change subject: [bugfix] don't fix html inside syntaxhighlight parts ......................................................................
[bugfix] don't fix html inside syntaxhighlight parts
Bug: T306723 Change-Id: I826b4d5ab70173ff0fcb513675090d0c6401bb4d --- M pywikibot/fixes.py 1 file changed, 2 insertions(+), 1 deletion(-)
Approvals: Matěj Suchánek: Looks good to me, approved jenkins-bot: Verified
diff --git a/pywikibot/fixes.py b/pywikibot/fixes.py index 46758fa..0d85bcd 100644 --- a/pywikibot/fixes.py +++ b/pywikibot/fixes.py @@ -81,7 +81,8 @@ 'nowiki', 'comment', 'math', - 'pre' + 'pre', + 'syntaxhighlight', ], } },