Skip to content

Instantly share code, notes, and snippets.

@Quelklef
Created April 2, 2020 08:49
Show Gist options
  • Save Quelklef/7646f957f22052bf037a7bac2ba5dcd0 to your computer and use it in GitHub Desktop.
Save Quelklef/7646f957f22052bf037a7bac2ba5dcd0 to your computer and use it in GitHub Desktop.
Render some HTML
function render(html) {
/* Render a single element */
const template = document.createElement('template');
html = html.trim(); // Never return a text node of whitespace as the result
template.innerHTML = html;
return template.content.firstChild;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment