名前¶
HTML::Packer - Another HTML code cleaner
HTML::Packer - もう一つの HTMLコードクリーナ
VERSION¶
Version 1.000
説明¶
A HTML Compressor.
HTMLの圧縮
概要¶
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.
- remove_newlines
-
ALL newlines will be removed if 'remove_newlines' has a true value.
- do_javascript
-
Defines compression level for javascript. Possible values are 'minify', 'shrink' and 'base62'. Default is no compression for javascript. This option only takes effect if JavaScript::Packer is installed.
- do_stylesheet
-
Defines compression level for CSS. Possible values are 'minify' and 'pretty'. Default is no compression for CSS. This option only takes effect if CSS::Packer is installed.
- no_compress_comment
-
If not set to a true value it is allowed to set a HTML comment that prevents the input being packed.
<!-- HTML::Packer _no_compress_ -->
Is set by default.
use HTML::Packer;
my $packer = HTML::Packer->init();
$packer->minify( $scalarref, $opts );
入力を変更することなくスカラを返すため, シンプルに使えます. (次の例のように)
my $ret = $packer->minify( $scalarref, $opts );
後方互換のために, 関数形式で minifyを呼ぶことも可能です.
HTML::Packer::minify( $scalarref, $opts );
第一引数は HTMLコードのスカラリファレンスです. 第二引数はオプションをハッシュリファレンスで指定します. 指定可能なオプションは
- remove_comments
-
'remove_comments'が真であれば, HTMLコメントを取り除きます.
- remove_newlines
-
'remove_newlines'が真であれば, すべての改行を取り除きます.
- do_javascript
-
javascriptの圧縮レベルを定義します. 'minify', 'shrink', 'base62'の値を指定することができます. デフォルトでは javascriptを圧縮しません. このオプションは JavaScript::Packerがインストールされている場合のみ, 有効となります.
- do_stylesheet
-
CSSの圧縮レベルを定義します. 'minify', 'pretty'の値を指定することができます. デフォルトでは CSSを圧縮しません. このオプションは CSS::Packerがインストールされている場合のみ, 有効となります.
- no_compress_comment
-
真が設定されない場合, 圧縮を抑制することを示すコメントの設定を許可します.
<!-- HTML::Packer _no_compress_ -->
がデフォルトのコメントとして設定されています.
作者¶
Merten Falk, <nevesenin at cpan.org>
バグ¶
Please report any bugs or feature requests to bug-html-packer at rt.cpan.org
, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=HTML-Packer. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
バグレポート, 機能の要望については bug-html-packer at rt.cpan.org
か, Webインタフェースの http://rt.cpan.org/NoAuth/ReportBug.html?Queue=HTML-Packer までお願いします. 通知を受けて, 報告されたバグについて変更を加えた場合, 自動的にあなたにも通知されます.
サポート¶
You can find documentation for this module with the perldoc command.
perldoc HTML::Packer
このモジュールのドキュメントは perldocコマンドを使って見ることができます.
perldoc HTML::Packer
COPYRIGHT & LICENSE¶
Copyright 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.