rehtm icon indicating copy to clipboard operation
rehtm copied to clipboard

Create and hydrate HTML with HTM

Results 3 rehtm issues
Sort by recently updated
recently updated
newest added

this [doesn't work](https://codepen.io/lorean_victor/pen/zYyOzPd?editors=0011), it should: ```js import { html } from 'https://esm.sh/rehtm' document.body.appendChild(html`Hellow ${undefined && 'World!'}`) ```

bug

rehtm handles whitespace differently than HTML itself. This particularly means hydrating HTML generated by other means, even when the string seems exceedingly similar, will not work properly (see [demo](https://codepen.io/lorean_victor/pen/QWBowwz?editors=1011)). However,...

question

Special characters such as ` `, ` `, etc aren't rendering properly (see [demo](https://codepen.io/lorean_victor/pen/ExpMavg?editors=1010)). This is due to [this issue](https://github.com/developit/htm/issues/234) on [htm](https://github.com/developit/htm).

bug