2011-11-14 16 views
2

我需要將它轉換爲HAML轉換這個網站以HAML

<link href="/skin/jplayer.blue.monday.css" rel="stylesheet" type="text/css" /> 

誰能幫助我?

謝謝。

+2

請查看http://www.htmltohaml.com/以瞭解這類翻譯的一般情況。 –

回答

3

這應做到:

%link{:href => "/skin/jplayer.blue.monday.css", :rel => "stylesheet" :type => "text/css"} 

鏈接沒有特別的HAML reference提及,但與HAML你可以假設一個標籤將採取以下形式:

%tagname{:attr1 => "val1", :attr2 => "val2", ...} 

Link是中the tags that are automatically closed by default,只要他們沒有內容。