Changes
- Fix
Unexpected closing tag name...errors by detecting Lua operators "<<", "<space" and "<=" in Lua scripts.
No spaces are allowed between the opening angle bracket and the name when declaring an XML-subobject.
Now... < name ...,... <= ...,... << ...are treated as parts of Lua script code.
settings.xml:<config> <events> <desktop> <script on="F2"> vtm.desktop.Run({ id="Logs" }); a = 10 b = 2 log("a > b = ", (a > b)) log("a < b = ", (a < b)) log("a <= b = ", (a <= b)) log("a << b = ", (a << b)) log("a<=b = ", (a<=b)) log("a<<b = ", (a<<b)) </script> </desktop> </events> </config>