rookieRailer
rookieRailer

Reputation: 2341

Convert this html to haml

I need to convert this to haml

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

Can anyone help me?

Thanks.

Upvotes: 2

Views: 402

Answers (1)

Raphael
Raphael

Reputation: 1721

This should do it:

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

Link isn't specifically mentioned in the HAML reference, but with HAML you can assume that a tag will take the form:

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

Link is among the tags that are automatically closed by default, as long as they have no content.

Upvotes: 3

Related Questions