If so, that is impressive, and something I'd love to use!
Edit: I'm asking because I attempted to use template literals for HTML templates and escaping values is the trickiest part. I settled for requiring the caller to tell me what kind of escaping to use (with the default being very conservative).
In the "Events" section of the docs, there's a text box you can type into and the contents get inserted into an "em" element below the text box. If I type HTML into that box, it adds additional HTML elements to the page, so that seems like escaping isn't working.
Is that a bug or am I just not understanding what you're saying?
> t`<button @click="${() => data.clicks++}">Fired ${() => data.clicks} arrows</button>`
If so, that is impressive, and something I'd love to use!
Edit: I'm asking because I attempted to use template literals for HTML templates and escaping values is the trickiest part. I settled for requiring the caller to tell me what kind of escaping to use (with the default being very conservative).