Rails アプリに問題があります。リンクしたい
<h1><%= news.title %></h1>
このような。しかし、HTML タグ "a" の代わりに、link_to を使用したいと考えています。
<a href="trainers-single.html" class="postTitle"><h1><%= news.title %></h1></a>
お気に入り:
<%= link_to "<h1><%= news.title %></h1>", news, :class => "postTitle" %>
しかし、それは受け入れません。それを示す正しい方法は何ですか?