Skip to content
This repository has been archived by the owner on Oct 4, 2021. It is now read-only.

Commit

Permalink
[TextEditor] Corrected tag coloring for the html modes.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike Krüger committed Feb 19, 2013
1 parent fe7cb5e commit b900400
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,11 @@
</Span>

<!-- tags -->
<Span tagColor = "Html Tag Delimiter" color = "Html Element Name" rule = "InTag">
<Begin>&lt;/</Begin>
<End>&gt;</End>
</Span>

<Span tagColor = "Html Tag Delimiter" color = "Html Element Name" rule = "InTag">
<Begin>&lt;</Begin>
<End>&gt;</End>
Expand Down
5 changes: 5 additions & 0 deletions main/src/core/Mono.Texteditor/SyntaxModes/HtmlSyntaxMode.xml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,11 @@ THE SOFTWARE.
<End>&gt;</End>
</Span>

<Span tagColor = "Html Tag Delimiter" color = "Html Element Name" rule = "InTag">
<Begin>&lt;/</Begin>
<End>&gt;</End>
</Span>

<Span tagColor = "Html Tag Delimiter" color = "Html Element Name" rule = "InTag">
<Begin>&lt;</Begin>
<Exit>&gt;</Exit>
Expand Down

0 comments on commit b900400

Please sign in to comment.