Basically I am trying to get this output in Rails and Slim:
<a href="/some/link">my<strong>name</strong></a>
This is what I have so far:
= link_to 'my<strong>name</strong>', controller: :pages, action: :home
Obviously it outputs:
my<strong>name</strong>
on the page instead of interpreting the strong tags. Any thoughts?