What happened?
Template string inside tag function:
let x = html`<div>
${`<p>World</p> `}
</div>
<p>This</p>
`;
or tag function inside tag function
let x = html`<div>
${html`<p>World</p> `}
</div>
<p>This</p>
`;
breaks syntax highlighting and I see this:
