Files
vscode-extension-samples/smart-template-strings-sample
2018-10-10 09:37:51 -07:00
..
2017-03-20 09:17:08 +01:00
2018-10-10 09:37:51 -07:00
2017-03-20 09:17:08 +01:00
2017-03-20 09:17:08 +01:00

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.