2015-11-26 64 views
0

我對「font-awesome-sass」寶石使用圖標助手。我還使用link_to鏈接到正在使用prawn和prawnto生成的PDF。我怎樣才能將這兩行結合起來,我有一個字體超讚的鏈接到我的pdf?在ruby中結合link_to和圖標助手

<p><%= link_to "PDF", hotel_shell_path(@hotel_shell, :format => 'pdf') %></p> 

<a><%= icon("file-pdf-o", "", class: "", href: '#') %></a> 

在此先感謝。如果你需要更多的細節,請告訴我。

+0

能否請您加入,你的問題,你想生成HTML結果? –

回答

3

我認爲你正在尋找這樣的事情,一個link_todo塊:

<%= link_to hotel_shell_path(@hotel_shell, :format => 'pdf') do %> 
    <%= icon("file-pdf-o", "", class: "", href: '#') %> 
<% end %>