Non-Velocity strings are being highlighted.
Brought to you by:
tjuerge
If I have a velocity file with content like:
#if ( $blah == "BlahBlah" )
<table width="100%">
<!-- stuff -->
</table>
#end
The editor picks up both "100%" and "BlahBlah" as being
strings. However, AFAIK, velocity doesn't care about
the "100%" string at all. For example, the following
code runs quite validly in velocity:
" #if ( "Blah" == "Blah" ) Hello #end
(Which prints out " Hello )
This has the following sections in blue:
" # if ( "
" == "
" ) Hello #end
The quotes preceding should be having no effect and
shown in black.