Skip to content

Instantly share code, notes, and snippets.

@louisstow
Created April 20, 2013 23:50
Show Gist options
  • Save louisstow/5427877 to your computer and use it in GitHub Desktop.
Save louisstow/5427877 to your computer and use it in GitHub Desktop.
Convert to HTML entities
var entityMap = {
"&": "&",
"<": "&lt;",
">": "&gt;",
'"': '&quot;',
"'": '&#39;',
"/": '&#x2F;'
};
function escapeHtml (string) {
return String(string).replace(/[&<>"'\/]/g, function (s) {
return entityMap[s];
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment