How can I do that? Text with paragraphs in show

I have this in code in show: <p>   <b>Observation:</b><BR>   <BLOCKQUOTE> <%=h @repair_ticket.observation %> </BLOCKQUOTE>    </p>

The observation is text. When I edit this observation, I put ".", creating several paragraphs, but when I go to show, the view gives me all the text in one line (not doing the paragraphs I made)

@repair_ticket.observation.gsub( /\n/, '<br />' )

I'd put in a helper of course.

Greg Donald wrote: