Files
vscode-extension-samples/smart-template-strings-sample

smart-template-strings

A sample extension that offers completions inside template strings. Template strings and tag function are becoming popular for embedding SQL-constructs or HTML inside JavaScript or TypeScript. For instance

html(...args) {
    // populate dom from args
}

html`div`

This sample shows how to indentify such template strings and how to provide completions inside of them.