-
-
22 Dec 2008 21:35:08 UTC
- Distribution: CSS-Packer
- Module version: 0.2
- Source (raw)
- Browse (raw)
- Changes
- How to Contribute
- Issues (0)
- Testers (126 / 0 / 0)
- Kwalitee
Bus factor: 1- License: perl_5
- Activity
24 month- Tools
- Download (5.23KB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Latest version
++ed by:3 non-PAUSE users- Dependencies
- Test::More
- and possibly others
- Reverse dependencies
- CPAN Testers List
- Dependency graph
NAME
CSS::Packer - Another CSS minifier
VERSION
Version 0.2
SYNOPSIS
use CSS::Packer; CSS::Packer::minify( $scalarref, $opts );
DESCRIPTION
A fast pure Perl CSS minifier.
FUNCTIONS
CSS::Packer::minify( $scalarref, $opts );
First argument must be a scalarref of CSS-Code. Second argument must be a hashref of options. The only option is
- compress
-
Defines compression level. Possible values are 'minify' and 'pretty'. Default value is 'pretty'.
'pretty' converts
a { color: black ;} div { width:100px; }
to
a{ color:black; } div{ width:100px; }
'minify' converts the same rules to
a{color:black;}div{width:100px;}
AUTHOR
Merten Falk,
<nevesenin at cpan.org>
BUGS
Please report any bugs or feature requests to
bug-css-packer at rt.cpan.org
, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=CSS-Packer. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.SUPPORT
You can find documentation for this module with the perldoc command.
perldoc CSS::Packer
COPYRIGHT & LICENSE
Copyright 2008 Merten Falk, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
SEE ALSO
Module Install Instructions
To install CSS::Packer, copy and paste the appropriate command in to your terminal.
cpanm CSS::Packer
perl -MCPAN -e shell install CSS::Packer
For more information on module installation, please visit the detailed CPAN module installation guide.