Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

My rails 3 app receives emails. Some of them are plain text. When the app displays them to the user I want them to be properly formatted. In other word I want to encode plain text into html. For example: "Hello\n\nHello" =>

Hello

Hello

(or something like it).

Of course I can write my own 4 lines of code but I am sure those 4 lines have already be written, tested and wrapped in some nice method call.

Thanks

Matteo

share|improve this question
1  
api.rubyonrails.org/classes/ActionView/Helpers/… is a simple start, you can explore redcloth, rdiscout etc. for more advanced requirements. – rubish Aug 30 '11 at 6:44

2 Answers

up vote 2 down vote accepted

Wrap your text in a Pre tag:

<%= content_tag('pre', "Hello\n\nHello") %>
share|improve this answer
Yes. Newline characters in a <pre> tag will be rendered in the browser. – David Grayson Aug 30 '11 at 5:50

in your controller

render :text => "bla bla bla"

it be useful http://apidock.com/rails/ActionView/Rendering/render

share|improve this answer
I clearly did not make my self clear! See my update – Matteo Melani Aug 30 '11 at 4:53
1  
try github.com/ged/bluecloth – zloydadka Aug 30 '11 at 5:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.