NAME Tenjin - Fast templating engine with support for embedded Perl. SYNOPSIS use Tenjin; $Tenjin::USE_STRICT = 1; # use strict in the embedded Perl inside # your templates. Optional but recommended. my $engine = new Tenjin::Engine(); my $context = { title => 'Tenjin Example', items => [qw/AAA BBB CCC/] }; my $filename = 'file.html'; my $output = $engine->render($filename, $context); print $output; DESCRIPTION Tenjin is a very fast and full-featured templating engine, implemented in several programming languages. It supports embedded Perl, nestable layout template, other templates inclusion, capture parts of or the entire template, file and memory caching, template arguments and preprocessing. SEE ALSO See "/www.kuwata-lab.com/tenjin/pltenjin-users-guide.html"" in