Reputation: 27852
Say I have an h1 where I want to welcome a user with a link, so I do this:
h1
| Hello user!
But if I want to add a link:
h1
| Hello user, = link_to 'Click here', '#'
What is the correct approach in this case?
Upvotes: 0
Views: 129
Reputation: 230481
Just put it on the next line
h1
| Hello user,
= link_to 'Click here', '#'
Upvotes: 1