Skip to content

Instantly share code, notes, and snippets.

@markshust
Last active December 14, 2015 18:56
Show Gist options
  • Select an option

  • Save markshust/06d5380878fa7fc6d7bd to your computer and use it in GitHub Desktop.

Select an option

Save markshust/06d5380878fa7fc6d7bd to your computer and use it in GitHub Desktop.
underscore mixin to convert line breaks to br tags
_.mixin({
lbToBr: function(html) {
html = html.replace(/(?:\r\n|\r|\n)/g, '<br />');
return html;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment