When converting using html2haml, the id/class used for a particular
element is always declared twice within the haml.
for example:
<pre>
<div id="menu" class="box">
<div class="box-top">
</div>
</div>
</pre>
is coverted to:
<pre>
#menu.box{"class"=>"box", "id"=>"menu"}
.box-top{"class"=>"box-top"}
</pre>
is there any reason for this as it seems pretty redundant
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Haml" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/haml?hl=en
-~----------~----~----~----~------~----~------~--~---