So I lets say I have a variable that holds some HTML elements. How do I get that to display correctly?
Example
@mainArticle = "<p>Hey this is an example</p>"
//HTML Page
<div class="mainArticleSpace">
<%= @mainArticle %>
</div>
I've tried this and it includes the p tags when you try to display.