Skip to content

Instantly share code, notes, and snippets.

@kkawamura
Created February 13, 2013 06:31
Show Gist options
  • Save kkawamura/4942700 to your computer and use it in GitHub Desktop.
Save kkawamura/4942700 to your computer and use it in GitHub Desktop.
nl2br for rails helper
def nl2br(str)
str.gsub(/\r\n|\r|\n/, "<br />")
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment