pulse00 / Twig-Eclipse-Plugin

Eclipse plugin for the twig templating language.
twig.dubture.com
MIT License
107 stars 24 forks source link

syntax coloring bug #102

Open creative-resort opened 6 years ago

creative-resort commented 6 years ago

A line like: <!DOCTYPE {{ config.page.doctype|default('html')|raw }}>

breaks the coloring - everything appears in standard text colors. I am required to unnecessarily put the doctype tag into a literal for it to work:

{{'<!DOCTYPE'}} {{ config.page.doctype|default('html')|raw }} {{'>'}}