currencysecrets / mql4

MQL4 Snippets & Syntax for Sublime Text
MIT License
97 stars 36 forks source link

Invalid XML syntax because of unescaped & entity in line 339 #19

Open CrazyCoder opened 8 years ago

CrazyCoder commented 8 years ago

https://github.com/currencysecrets/mql4/blob/master/Syntaxes/MQL4.tmLanguage#L339

[-*&<>=+!] renders the XML invalid. Probably & needs to be replaced with &.

LorneCash commented 4 years ago

Strange that this works in VS Code with the invalid XML but when used in Visual Studio (2019) it does not work at all until the xml syntax is fixed. My thought is that it's trying to say that "<> is the same as !=" so maybe just remove the extra & making it this: [-*&amp;&lt;&gt;=+!]

LorneCash commented 1 year ago

Fixed in PR#28 this should have been closed but I forgot to add it in to comment to do it automatically.