noloop / cl-minify-css

To minify css with common lisp.
10 stars 1 forks source link

Minify without the last ";" of the class properties values #1

Open noloop opened 4 years ago

noloop commented 4 years ago

Example:

Instead it:

body{padding:1em;margin:0 auto;max-width:33em;}@media (min-width:70em){body{font-size:130%;}}h1{font-size:1.5em;}

Minify thus:

body{padding:1em;margin:0 auto;max-width:33em}@media (min-width:70em){body{font-size:130%}}h1{font-size:1.5em}