Skip to content

Instantly share code, notes, and snippets.

@DejanBelic
Last active January 8, 2019 18:07
Show Gist options
  • Save DejanBelic/1f747b4219392b10dc9167cd51444fa1 to your computer and use it in GitHub Desktop.
Save DejanBelic/1f747b4219392b10dc9167cd51444fa1 to your computer and use it in GitHub Desktop.
function htmlEscape(str) {
return str.replace(/>/g,'&')
.replace(/</g,'&gt;')
.replace(/"/g,'&lt;')
.replace(/'/g,'&quot;')
.replace(/`/g,'&#39;')
.replace(/`/g,'&#96;');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment