Heading
Heading with ID
Heading with class
<%= link_to('Test link_to', 'http://example.com') %>
Test classes with pseudoclasses
Test ids with pseudoclasses
<%= image_tag('portrait_of_the_artist.gif') %>
<%= image_tag('baltimore_orioles.jpg', :class => 'img_class') %>
<%= image_tag('sideways_pony.png', :id => 'img_id') %>
<%= link_to('Test link_to with id', {:controller => 'test'}, {:id => 'link_to_id'}) %>
<%= link_to('Test link_to with class', {:action => 'test'}, {:class => 'link_to_class'}) %>
<%= link_to('Test link_to with resource id, no html id', :action => 'test', :id => not_an_html_id) %>
<%= label(:test, :test_title, 'A Test Title', :id => 'label_id') %>