Rails et haml, comment ajouter des sélecteurs d'id et de classe à link_to helper?

J'ai été la recherche autour de la façon d'ajouter un id sélecteur d'un link_to aide de hamlest-ce possible?

  a .haml - %a#booked{:href => "index.haml"} Link 1    

  b .html.erb - booking.html.erb - <%= link_to "Link 1", booking_path, :id => "booked" %>

  c .haml.erb - booking.haml.erb - ...??

Qui serait l'équivalent de b en haml?

source d'informationauteur evanx