tj / haml.js

Faster Haml JavaScript implementation for nodejs
409 stars 42 forks source link

nested selector group ungroups all-but-first selector #29

Closed visnup closed 14 years ago

visnup commented 14 years ago

say you have something like:

.person
  h1, h2, p
    :margin-left 5px

this compiles to:

.person h1, h2, p {
  margin-left: 5px;}

which is way badly wrong because now all of my h2 and p tags have a left margin on them.

visnup commented 14 years ago

whoops, wrong repo. this one goes in sass.js. :(