NAME
Template::Plugin::HTML::Template - HTML::Template filter in TT
SYNOPSIS
my $tt = Template->new;
$tt->process('html-template.tt', { myname => 'foo' });
# html-template.tt
[% USE HTML.Template %]
[% FILTER html_template %]
My name is <TMPL_VAR name=myname>
[% END %]
DESCRIPTION
Template::Plugin::HTML::Template is a TT plugin to filter HTML::Template templates. It might sounds just silly, but it can be handy when you want to reuse existent HTML::Template templates inside TT.
AUTHOR
Tatsuhiko Miyagawa <miyagawa@bulknews.net>
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.