how can I add the following html into my link_to
<i class="icon-plus icon-white"></i>
<%= link_to 'add', '#', :class => 'btn btn-mini pull-right'%></th>
so that the html that will be produced will look like this
<a class="btn btn-mini pull-right" href="#">
<i class="icon-plus icon-white"></i>
</a>