actiontext-syntax-highlighter icon indicating copy to clipboard operation
actiontext-syntax-highlighter copied to clipboard

Strip formatting from pasted text

Open ayushn21 opened this issue 4 years ago • 0 comments

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 || "";
}

ayushn21 avatar Aug 07 '21 15:08 ayushn21