``` html`.<a></a>` ``` This ignores `<a>` and returns `"."`, whereas `` html`.<a></a>.` `` correctly returns a `DocumentFragment`. Workaround: `` html`.<a></a>${""}` ``
This ignores
<a>and returns".", whereashtml`.<a></a>.`correctly returns aDocumentFragment.Workaround:
html`.<a></a>${""}`