rstacruz / css-condense

[unsupported] A CSS compressor that shows no mercy
205 stars 4 forks source link

Removing empty quotes #10

Closed tomsterritt closed 9 years ago

tomsterritt commented 9 years ago

Is there any way to prevent empty quotes being removed?

For example using pseudo elements, content: ""; becomes content:;

ben-eb commented 9 years ago

I can't reproduce this.

h1:after {
    content: '';
}

Is compressed correctly to:

h1:after{content:''}

I tried both styles of quotes, too...