How can I insert a link_to
alongside text in a <p>
tag using Slim?
here is my html.slim
view :
p.subtitle = t('.subtitle')
= link_to 'Link', t('.title_link')
But it doesn't work
I also tried :
p.subtitle = t('.subtitle')
= link_to 'Link', t('.title_link')
This works but the link is outside the <p>
tag