tree-sitter / tree-sitter-html

HTML grammar for Tree-sitter
MIT License
136 stars 72 forks source link

Script of type "module" isn't injected with javascript highlighting #49

Closed foodornt closed 1 year ago

foodornt commented 1 year ago

Title for example:

<script type="module">
const a = 1;
</script>

raw_text not colored

<script>
const a = 1;
</script>

raw_text colored