I got a rails app where I can input a few paragraphs of text into my model. The problem is I dont know how to input any line breaks.
I\'ve tried to add \" {ln}{/ln}
Here is another way to display the line breaks in a string while still escaping the rest of the text:
<%= safe_join(@object.textarea_input.split("\r\n"), "".html_safe) %>