I am new to web dev. Below i have a code in haml
%th
%a#title_header
%a{:th => ("hilite" if @sort == "title")}= link_to 'Movie Title', :sort => "title"
which gives me the following HTML
<th>
<a id='title_header'>
<a th='hilite'><a href="/movies?sort=title">Movie Title</a></a>
</a>
</th>
While what i am looking to get is
<th class='hilite'>
<a id='title_header'><a href="/movies?sort=title">Movie Title</a></a>
</th>