HTML::Templateの記事に手を入れていたら、 長くなったので分割。こっちはメソッド関係。 (2013/07/21追記)newに指定できるencode系オプションについて追記。 new() 新しいテンプレートオブジェクトを作る。 # ファイル名でも $tpl = HTML::Template->new(filename => 'template.html'); # テンプレートを格納した変数へのリファレンス $template_text = "(テンプレート)"; $tpl = HTML::Template->new(scalarref => \$template_text); # テンプレートを格納した配列へのリファレンス open FH, '<', 'template.html'; @template = <FH>; close FH; $tpl = HTML::Templat