Here is my code:
<div class='some' style='position: absolute; left: 300; top: 300;'>..</div>
It parses only style='position: absolute', and doesn't parse the other styles. How can I achieve this?
Here is my code:
<div class='some' style='position: absolute; left: 300; top: 300;'>..</div>
It parses only style='position: absolute', and doesn't parse the other styles. How can I achieve this?
Requested a hash special case at: https://github.com/haml/haml/issues/787 to allow us to write:
%div{ style: { display: "none", width: "50px" } }
much like is possible for class: ["class1", "class2"].