Problem:
Triple quoted strings with HTML markup inside are breaking highlighting.
For example, the following code will be highlighted incorrectly:
def aMultilineString = """
Example
"""
println aMultilineString
Fix:
Triple-quotes literals should be added to "groovy.xml":
<begin>"""</begin>
<end>"""</end>
<begin>'''</begin>
<end>'''</end>
Let me put code example again:
I agree with this patch. It's sorely needed!