vscode-hyperscript
vscode-hyperscript copied to clipboard
Opening tag breaks syntax for rest of file
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