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

Backward compatibility SASS with SCSS #124

Closed vladkens closed 11 years ago

vladkens commented 11 years ago

SASS now work fine with ";" at the end line.

another.sass body { font-size: 10em; }

Parse old => body { font-size: 10;; }

Parse now => body { font-size: 10em; }