我怎么能用rails语法写这个呢? a href="/" class="glyphicon glyphicon-fire logo" aria-hidden="true" /a 可能它是这样的: %= link_to '', root_path, class: 'glyphicon glyphicon-fire logo', **???** % %= link_to '', root_path,
<a href="/" class="glyphicon glyphicon-fire logo" aria-hidden="true" ></a>
可能它是这样的:
<%= link_to '', root_path, class: 'glyphicon glyphicon-fire logo', **???** %>
<%= link_to '', root_path, ...., 'aria-hidden' => true %>
要么
<%= link_to '', root_path, ...., aria: {hidden: true} %>