# NAME HTML::Packer - Another HTML code cleaner
Build Status Coverage Status
# VERSION Version 2.10 # DESCRIPTION A 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 - remove\_comments HTML-Comments will be removed if 'remove\_comments' has a true value. Comments starting with ` Is not set by default. - html5 If set to a true value closing slashes will be removed from void elements. - csp If `do_csp` is set to `'sha256'`, returns a hash that looks like this: ( 'script-src' => [qw( sha256-...= sha256-...= )], 'style-src' => [qw( sha256-...= sha256-...= )], ) with each element of the `ARRAY`refs containing a CSP-friendly hash for a `