Skip to content

Instantly share code, notes, and snippets.

@agran
Created November 17, 2015 17:42
Show Gist options
  • Save agran/6fd89b9578c94d5a0268 to your computer and use it in GitHub Desktop.
Save agran/6fd89b9578c94d5a0268 to your computer and use it in GitHub Desktop.
function escapeHtml(text) {
return text
.replace(/&/g, "&")
.replace(/</g, "&lt;")
.replace(/>/g, "&gt;")
.replace(/"/g, "&quot;")
.replace(/'/g, "&#039;");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment