richthegeek / phpsass

A compiler for SASS/SCSS written in PHP, brought up to date (approx 3.2) from a fork of PHamlP: http://code.google.com/p/phamlp/
http://phpsass.com/
382 stars 83 forks source link

Compact renderer should not output placeholders #161

Closed gabrielfin closed 10 years ago

gabrielfin commented 10 years ago
%foo {
  color: blue;
}
#bar {
  @extend %foo;
}

should output

#bar {
  color: blue;
}

instead of

%foo, #bar {
  color: blue;
}