Public
HTTP (deprecated)
  • lbb00 avatar
    html
    @lbb00
    Render html by tagged templates You can use this simple function to compose components, and you can also format the content within html`` elegantly in VSCode. Example const TitleTextDefault = ':)' const Title = (text)=> html`<h1>${text || TitleTextDefault}</h1>` // -> "<html><body><h1>:)</h1></body></html>" html`<html><body>${Title}</body></html>` // -> "<html><body><h1>!</h1></body></html>" html`<html><body>${Title('!')}</body></html>`
    Script
1
Next
lbb00-registryexample.web.val.run
November 21, 2023