Is it possible to create syntax highlighting for custom defined words in known file type?
For example I want to have VS text editor color the tags <@ and @> a specified color when viewed in a html file.
Can you do this, and if so then how is it possible?
Yes, well, certainly this is possible for C++ files and files that Visual Studio recognises; so if VS is set up to recognise your HTML as C++ files you should be good.
You will need to create a usertype.dat file and place it in your
folder (or equivalent for VS2010, this is for VS2008)
This file should have the keywords you want listed separately on each line;
for example; I develop with Qt and I have a usertype.dat file as:
(and so on)
Restart VS and your keywords will be highlighted.
I got the info from here and verified it on my system.