Skip to content

Instantly share code, notes, and snippets.

@wilf312
Created October 11, 2022 07:55
Show Gist options
  • Save wilf312/3d52daa6cf61f77287d593023b24e9db to your computer and use it in GitHub Desktop.
Save wilf312/3d52daa6cf61f77287d593023b24e9db to your computer and use it in GitHub Desktop.
DOMParser
```
function convert(textHtml) {
const parser = new DOMParser();
const $document = parser.parseFromString(textHtml, 'text/html');
return $document;
}
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment