Embedded HTML in link_to body in Rails Embedded HTML in link_to body in Rails ruby-on-rails ruby-on-rails

Embedded HTML in link_to body in Rails


Try it this way

<%= link_to(raw("a <strong>strong</strong> link"),{:pics => true},{ :class => 'highlight'})  %>


= link_to "http://www.example.com" do   <strong>strong</strong>


As of 2016 I prefer this method.

<%= link_to my_path do %>    This is a <strong>ape</strong><% end %>