Last active
August 17, 2020 18:35
-
-
Save sabesansathananthan/e9ca832ec6bc86268f9dc7efa887131a to your computer and use it in GitHub Desktop.
Embed a blog on your React Website
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export default function ToText(node) { | |
let tag = document.createElement("div"); | |
tag.innerHTML = node; | |
node = tag.innerText; | |
return node; | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment