-
More and more JavaScript libraries are using tagged template literals (lit-html and HyperHTML are becoming very popular). Interop with these libraries is a problem though because Dart doesn't support …
-
-
# Tagged Template Literals & ES6 Template Literals/ ES6 Template Strings
> ES6 Template Strings & Tags
```js
"use strict";
/**
*
* @author xgqfrms
* @license MIT
* @copyright
* …
-
A lot of modern frontend (often web-component-based) frameworks make use of JS/TS tagged template literals for inline html/css. To the point where most editors (and even GitHub) recognize it and apply…
-
While I agree that the early errors are surprising, this proposal doesn't actually fix the problem - at best, it improves a few cases, while still leaving plenty of problematic and still-surprising sc…
-
In the https://webreflection.github.io/uhtml/#faq, I suggest a section about tooling such as:
- Minification
- I found `@literals/rollup-plugin-html-css-minifier` to be useful for minimizing th…
-
-
### Installed product versions
- Visual Studio: 2017 Community
- This extension: 2.4.340
### Description
Error parsing source with template literal tags
### Steps to recreate
1. Create a *.j…
-
From [MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals#tagged_templates):
> For any particular tagged template literal expression, the tag function will alwa…
-
Could you add highlight HTML in tagged template literals?
```js
const html = String.raw; // or const html = str => str[0];
const template = html``;
```