Skip to content

Instantly share code, notes, and snippets.

@raphaelchaib
Created March 3, 2015 16:00
Show Gist options
  • Save raphaelchaib/cd9aeaa41173230f9b45 to your computer and use it in GitHub Desktop.
Save raphaelchaib/cd9aeaa41173230f9b45 to your computer and use it in GitHub Desktop.
Javascript: New line to br tag function
function nl2br (str, is_xhtml) {
var breakTag = (is_xhtml || typeof is_xhtml === 'undefined') ? '<br />' : '<br>';
return (str + '').replace(/([^>\r\n]?)(\r\n|\n\r|\r|\n)/g, '$1' + breakTag + '$2');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment