dz4k / vscode-hyperscript

_hyperscript language support for VS Code <https://hyperscript.org>
MIT License
20 stars 0 forks source link

Opening tag breaks syntax for rest of file #6

Open brablc opened 9 months ago

brablc commented 9 months ago

Examples of code that breaks syntax highlighting:

put `<div>Hello</div>` into #main 
make an <a.navlink>

Funny enough this works fine:

put '<div>Hello</div>' into #main

For JavaScript style template strings one of the workarounds can be:

put `\x3Cdiv>Hello\x3C/div>` into #main