Skip to content

Instantly share code, notes, and snippets.

@saber-nyan
Created November 26, 2019 09:02
Show Gist options
  • Save saber-nyan/fed9fb8057912b0a3254baf9aa14022c to your computer and use it in GitHub Desktop.
Save saber-nyan/fed9fb8057912b0a3254baf9aa14022c to your computer and use it in GitHub Desktop.
function escapeHtml(in_) {
return in_.replace(/((?!<span style="background-color: #([A-Fa-f0-9]{6}|[A-Fa-f0-9]{3})">|<\/span>)[&<>"'/])/g, s => {
const entityMap = {
'&': '&amp;',
'<': '&lt;',
'>': '&gt;',
'"': '&quot;',
'\'': '&#39;',
'/': '&#x2F;',
};
return entityMap[s];
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment