actiontext-syntax-highlighter
actiontext-syntax-highlighter copied to clipboard
Strip formatting from pasted text
Sometimes, when text is pasted from sources such as Wikipedia, the formatting is copied along with it. This needs to be stripped before pasting the text in.
Something like this should do the trick:
function stripHtml(html)
{
let tmp = document.createElement("DIV");
tmp.innerHTML = html;
return tmp.textContent || tmp.innerText || "";
}