You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
embedded expressions in template literals (template strings) works but if it contains "html" inside a nested template literal then syntax highlighting gets messed up (VSCode renders it as if it is an unterminated template literal so all remaining code in the file gets colored as a string)
source
render
result
constmessage=`${`htm`}`;console.log(message);
✔️
constmessage=`${`html`}`;console.log(message);
❌
constmessage=`${`html5`}`;console.log(message);
✔️
The text was updated successfully, but these errors were encountered:
embedded expressions in template literals (template strings) works but if it contains "html" inside a nested template literal then syntax highlighting gets messed up (VSCode renders it as if it is an unterminated template literal so all remaining code in the file gets colored as a string)
The text was updated successfully, but these errors were encountered: