Thanks for the quick response. It's specific to script tags (at least I haven't found another context where comments are not recognized; but I've only used `jinja-html` mode, not raw, rb, md, or yaml). I'll take a look later.
Jinja comments not correctly highlighted in script tags
=======================================================
I'm using some Jinja comments in an inline script tag (so that users do not see the comments — the template is directly rendered), but the comments aren't properly highlighted. A simple demo:
```jinja
{# blah #}
<script>
{# blah #}
// blah
/* blah */
</script>
```
<img width="84" alt="screen shot 2019-01-16 at 11 36 36 am" src="https://user-images.githubusercontent.com/4149852/51263977-5d67ba80-1983-11e9-98f3-ab8a07ad1f2a.png">
I wonder if it's easy to add proper support for Jinja comments within script tags.
FWIW, shlex in non-POSIX mode does not strip quotes. It's otherwise pretty hard to extract raw tokens from shlex.