NAME

CSS::Packer - Another CSS minifier

<a href='https://travis-ci.org/leejo/css-packer-perl?branch=master'><img src='https://travis-ci.org/leejo/css-packer-perl.svg?branch=master' alt='Build Status' /></a>
<a href='https://coveralls.io/r/leejo/css-packer-perl'><img src='https://coveralls.io/repos/leejo/css-packer-perl/badge.png?branch=master' alt='Coverage Status' /></a>

VERSION

Version 2.09

DESCRIPTION

A fast pure Perl CSS minifier.

SYNOPSIS

use CSS::Packer;

my $packer = CSS::Packer->init();

$packer->minify( $scalarref, $opts );

To return a scalar without changing the input simply use (e.g. example 2):

my $ret = $packer->minify( $scalarref, $opts );

For backward compatibility it is still possible to call 'minify' as a function:

CSS::Packer::minify( $scalarref, $opts );

First argument must be a scalarref of CSS-Code. Second argument must be a hashref of options. Possible options are:

AUTHOR

Merten Falk, <nevesenin at cpan.org>. Now maintained by Lee Johnson (LEEJO)

BUGS

Please report any bugs or feature requests through the web interface at http://github.com/leejo/css-packer-perl/issues. 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 - 2011 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

CSS::Minifier, CSS::Minifier::XS