How to have Rails Views process HTML tags from database content?
You can use the raw helper method.
<%=raw @page.content %>
<%= @page.content.html_safe %>
if you are safe with it's content.
You can use the raw helper method.
<%=raw @page.content %>
<%= @page.content.html_safe %>
if you are safe with it's content.