Is there a Railsy way to convert \\n to ?
Currently, I\'m doing it like this:
mystring.gsub(/\\n/, \'\')
mystring.gsub(/\r\n|\r|\n/, '\n')
worked for me