Reputation: 1948
Under
Tools => Options => Environment => Fonts and Colors
there is Text Editor
settings. Under Display Items
there are items with names starting with HTML
keyword. But I cannot find there a name for HTML
angle brackets. How are they called?
Upvotes: 2
Views: 386
Reputation: 99
In Visual Studio 2012, "HTML Tag Delimiter" is what worked for me. "HTML Element Name" is the tag itself.
Upvotes: 1
Reputation: 5405
In Visual Studio 2013, angle brackets (<
and >
) are in the XML Delimiter
category.
This will apply to
XML Syntax delimiters, including
<
,<?
,<!
,<!--
,-->
,?>
,<![
,]]>
,>
and[
,]
Note that this will not change the C# files angle brackets.
More info: Fonts and Colors, Environment, Options Dialog Box
Upvotes: 2