将此html转换为haml

时间:2011-11-14 14:56:58

标签: haml

我需要将其转换为haml

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

任何人都可以帮助我吗?

感谢。

1 个答案:

答案 0 :(得分:3)

这应该这样做:

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

HAML reference中未明确提及链接,但使用HAML,您可以假设标记采用以下形式:

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

链接属于the tags that are automatically closed by default,只要它们没有内容。