PavelTorgashov / FastColoredTextBox

Fast Colored TextBox for Syntax Highlighting. The text editor component for .NET.
Other
1.21k stars 463 forks source link

XML - end tag fix #241

Closed danny3313 closed 2 years ago

danny3313 commented 2 years ago

The original XMLTagRegex does not match the slash in the closing tag, causing a different color to be shown instead of the color defined in TagBracket style

This can be reproduced using a RegEx tester:

Example XML: <foo>foobar</foo>

Original RegEx: <\?|<|/>|</|>|\?> FastColorTextBox-RegEx example

Updated RegEx: <\?|</|>|<|/>|\?> FastColorTextBox-RegEx example Improved