In rails 2, I use <%=h %> to display HTML-generated by RedCloth, but how do I do that in Rails 3?

<%= raw RedCloth.new(@review).to_html %>
link|improve this question

This should work fine in Rails 3. What's your output - escaped HTML instead of raw? – Thilo Apr 22 '11 at 3:27
feedback

1 Answer

up vote 0 down vote accepted

<%= raw %> read raw vs. html_safe vs. h to unescape html

link|improve this answer
hi, it still doesn't work...I updated mine to show what I am doing...? – Angela Apr 22 '11 at 3:21
hmm...nevermind...working! – Angela Apr 22 '11 at 3:31
feedback

Your Answer

 
or
required, but never shown

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