html vs htl.html

Thanks for your replies @tophtucker and @mbostock.

I find the side-by-side comparisons SUPER helpful.

I’ll note another difference I’ve stumbled on:

html`
  <div>My text</div>
`

returns:

<div>My text.</div>

whereas:

htl.html`
  <div>My text.</div>
`

returns:

<span>
  <div>My htl.html div</div>
</span>

I’m not sure what the rationale for this distinction is, but it has caught me out a couple times when experimenting around with switching from html to htl.html.

Thanks,
Adam