Skip to content

Instantly share code, notes, and snippets.

@jiin
Created March 4, 2015 13:29
Show Gist options
  • Save jiin/3e4a9cd94c601cf51764 to your computer and use it in GitHub Desktop.
Save jiin/3e4a9cd94c601cf51764 to your computer and use it in GitHub Desktop.
nl2br
.filter('nl2br', function () {
return function (text) {
return (text + '').replace(/([^>\r\n]?)(\r\n|\n\r|\r|\n)/g, '$1' + '<br>' + '$2');
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment