Skip to content

Instantly share code, notes, and snippets.

@Fandora
Created July 21, 2012 09:00
Show Gist options
  • Select an option

  • Save Fandora/3155163 to your computer and use it in GitHub Desktop.

Select an option

Save Fandora/3155163 to your computer and use it in GitHub Desktop.
htmlEscape.js
function htmlEscape(html) {
return String(html)
.replace(/&/g, '&')
.replace(/</g, '&lt;')
.replace(/>/g, '&gt;')
.replace(/"/g, '&quot;');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment