I want to output the following with Ruby on Rails link_to and image_tag methods:
link_to
image_tag
Lorem Ipsum
You can use blocks as an alternative to the string interpolation with correct usage html_safe. For example:
html_safe
<%= link_to '#' do %> Lorem Ipsum <%= image_tag('/images/menu-arrow-down.gif') %> <% end %>