私はWeb開発に不慣れです。以下にhamlのコードがあります
%th
%a#title_header
%a{:th => ("hilite" if @sort == "title")}= link_to 'Movie Title', :sort => "title"
これは私に次のHTMLを与えます
<th>
<a id='title_header'>
<a th='hilite'><a href="/movies?sort=title">Movie Title</a></a>
</a>
</th>
私が取得しようとしているのは
<th class='hilite'>
<a id='title_header'><a href="/movies?sort=title">Movie Title</a></a>
</th>