CSS::Minifier::XS(3pm) | User Contributed Perl Documentation | CSS::Minifier::XS(3pm) |
CSS::Minifier::XS - XS based CSS minifier
use CSS::Minifier::XS qw(minify); $minified = minify($css);
"CSS::Minifier::XS" is a CSS "minifier"; its designed to remove un-necessary whitespace and comments from CSS files, while also not breaking the CSS.
"CSS::Minifier::XS" is similar in function to "CSS::Minifier", but is substantially faster as its written in XS and not just pure Perl.
"CSS::Minifier::XS" minifies the CSS by removing un-necessary whitespace from CSS documents. Comment blocks are also removed, except when (a) they contain the word "copyright" in them, or (b) they're needed to implement the "Mac/IE Comment Hack".
Internally, the minification is done by taking multiple passes through the CSS document:
First, we go through and parse the CSS document into a series of tokens internally. The tokenizing process does not check to make sure that you've got syntactically valid CSS, it just breaks up the text into a stream of tokens suitable for processing by the subsequent stages.
We then march through the token list and collapse certain tokens down to their smallest possible representation. If they're still included in the final results we only want to include them at their shortest.
We then go back through the token list and prune and remove un-necessary tokens.
Lastly, we go back through the token list and re-assemble it all back into a single CSS string, which is then returned back to the caller.
Graham TerMarsch (cpan@howlingfrog.com)
Please report bugs via RT (<http://rt.cpan.org/Dist/Display.html?Queue=CSS::Minifier::XS>), and be sure to include the CSS that you're having troubles minifying.
Copyright (C) 2007-, Graham TerMarsch. All Rights Reserved.
This is free software; you can redistribute it and/or modify it under the same license as Perl itself.
"CSS::Minifier".
2018-11-01 | perl v5.28.0 |