summaryrefslogtreecommitdiff
path: root/tests/snippets/xml
Commit message (Collapse)AuthorAgeFilesLines
* Improve whitespace handling in XmlLexer.Matthäus G. Chajdas2022-12-041-1/+23
|
* Fix catastrophic backtracking in HTML and XML (#2069)Jean Abou-Samra2022-02-241-0/+34
These lexers have re.DOTALL in their flags, so r"(.|\n)" is equivalent to r".", except with catastrophic backtracking properties. Closes #2068