Skip to content

Instantly share code, notes, and snippets.

@vayn
Created September 16, 2014 15:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vayn/3709def92c30cccfc746 to your computer and use it in GitHub Desktop.
Save vayn/3709def92c30cccfc746 to your computer and use it in GitHub Desktop.
function textToHTML(text) {
return ((text || "") + "") // make sure it's a string;
.replace(/&/g, "&")
.replace(/</g, "&lt;")
.replace(/>/g, "&gt;")
.replace(/\t/g, " ")
.replace(/ /g, "&#8203;&nbsp;&#8203;")
.replace(/\r\n|\r|\n/g, "<br />");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment