|
NAMEHTML::Packer - Another HTML code cleaner VERSIONVersion 2.11 DESCRIPTIONA HTML Compressor. SYNOPSIS use HTML::Packer;
my $packer = HTML::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: HTML::Packer::minify( $scalarref, $opts ); First argument must be a scalarref of HTML-Code. Second argument must be a hashref of options. Possible options are
AUTHORMerten Falk, "<nevesenin at cpan.org>". Now maintained by Lee Johnson (LEEJO) with contributions from: Alexander Krizhanovsky <ak@natsys-lab.com>
Bas Bloemsaat <bas@bloemsaat.com>
girst <girst@users.noreply.github.com>
Ankit Pati (ANKITPATI) <contact@ankitpati.in>
BUGSPlease report any bugs or feature requests through the web interface at <https://github.com/leejo/html-packer-perl/issues>. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes. SUPPORTYou can find documentation for this module with the perldoc command. perldoc HTML::Packer COPYRIGHT & LICENSECopyright 2009 - 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 ALSOHTML::Clean
|