VS Code extension that adds basic syntax highlighting for JavaScript and TypeScript tagged template strings using language identifier comments: const cssString = /* css */ ` button { color: hotpink !important; } `; const htmlString = /* html */` <button class="my-button"> Click me! </button> `; Usage The language identifier comment must appear before the opening backtick for the template string. H