Skip to content

Instantly share code, notes, and snippets.

@tonis2
Created January 30, 2018 10:12
Show Gist options
  • Save tonis2/1f7f87b34c4850b8b4bb0009c5f21d94 to your computer and use it in GitHub Desktop.
Save tonis2/1f7f87b34c4850b8b4bb0009c5f21d94 to your computer and use it in GitHub Desktop.
Convert string to HTML
String.prototype.html = function() {
let parser = new DOMParser();
let doc = parser.parseFromString(this, "text/html");
return doc.body.firstChild;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment