|
HTML::Tmojo - Dynamic Text Generation Engine |
HTML::Tmojo - Dynamic Text Generation Engine
my $tmojo = HTML::Tmojo->new(
template_dir => '/location/of/templates',
cache_dir => '/place/to/save/compiled/templates',
);
my $result = $tmojo->call('my_template.tmojo', arg1 => 1, arg2 => 3);
# HONESTLY, THIS SYNOPSIS DOESN'T COVER NEARLY ENOUGH. # GO READ TMOJO IN A NUTSHELL
Tmojo is used for generating dynamic text documents. While it is particularly suited to generating HTML and XML documents, it can be used effectively to produce any text output, including dynamically generated source code.
Will Conant <will@willconant.com>
|
HTML::Tmojo - Dynamic Text Generation Engine |