Just upgraded Rails to 2.3.5 to get the lovely looking rails_xss plugin but I've noticed one big issue with it. Any content_for blocks are escaped when yielded.

I've tried hacking it around by doing the either of following but they do not work:

<% @content_for_foo.html_safe! -%>
<%= yield raw :foo %>
link|improve this question

72% accept rate
feedback

1 Answer

up vote 2 down vote accepted

Try <%= raw yield :foo %>

link|improve this answer
You sir, are my hero! I couldn't figure out why none of the content_for stuff was working for me! – Jenny May 18 '10 at 18:57
feedback

Your Answer

 
or
required, but never shown

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