In a Rails 3 application I have a domain class where one attribute stores pure HTML content (it\'s a blog app, the domain class is Post).
In the ERB templates, I ne
Using a double equals means the result is not escaped...
<%== somePost.content %>
See this SO question about it - What does <%== %> do in rails erb?