我有这个:
<%= link_to biscuits_path do %>
<strong> <%= pluralize @biscuit.count, t('biscuits') %> </strong>
<%= end %>
结果是一个链接,如:
<a href="/en/biscuits"> <strong> 2 Biscuits </strong></a>
我想要一个仅在数字中具有强的链接,例如:
<a href="/en/biscuits"> <strong> 2 </strong> Biscuits </a>
我该怎么做?