A file-based template manager
use Text::MicroTemplate::File; our $mtf = Text::MicroTemplate::File->new( include_path => [ $path1, $path2, ... ], use_cache => 1, ); # render $mtf->render_file('template.file', $arg1, $arg2, ...);
Text::MicroTemplate::File is a file-based template manager for Text::MicroTemplate.
Text::MicroTemplate provides OO-style interface with following properties.
include path (default: ['.'])
This accessor is readonly.
cache mode (0: no cache (default), 1: cache with update check, 2: cache but do not check updates)
layer passed to open (default: \*(L":utf8\*(R")
package under where template files are compiled (default: \*(L"main\*(R")
Returns a subref that renders given template file. Renders the template file with given arguments. Wraps given template with wrapper file. Internally the processed template is passed as $_[0] to the wrapper template.
Text::MicroTemplate
Kazuho Oku <kazuhooku gmail.com>
This program is free software, you can redistribute it and/or modify it under the same terms as Perl 5.10.