Skip to content

Instantly share code, notes, and snippets.

@zhuzhuaicoding
Created May 3, 2014 03:17
Show Gist options
  • Save zhuzhuaicoding/11491064 to your computer and use it in GitHub Desktop.
Save zhuzhuaicoding/11491064 to your computer and use it in GitHub Desktop.
encodeHTML
function (a) {
return a.replace(/[&'"<>\/\\\-\x00-\x09\x0b-\x0c\x1f\x80-\xff]/g,function (c) {
return"&#" + c.charCodeAt(0) + ";"
}).replace(/ /g, "&nbsp;").replace(/\r\n/g, "<br />").replace(/\n/g, "<br />").replace(/\r/g, "<br />")
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment