View Single Post
12-16-05, 05:38 AM   #1
Ravendwyr
A Flamescale Wyrmkin
 
Ravendwyr's Avatar
AddOn Author - Click to view addons
Join Date: Sep 2005
Posts: 139
LUA Comments in XML files

I know that to make a comment in an XML file you surround it with <!-- text -->, but what about comments with "--" before them?

f.i.
Code:
<Scripts>
 <OnLoad>
  -- call the On Load function
  TestMod_OnLoad();
 </OnLoad>
 <OnEvent>
  -- call the On Event function
  TestMod_OnEvent(event);
 </OnEvent>
</Scripts>
Are they legit comments? If so, is it possible to make them appear green, like the other comments?
If they're not comments, then I'd better get rid of them
__________________
Twitter | GitHub
  Reply With Quote