NAME
Tiffany::Text::MicroTemplate::File - Tiffany gateway for Text::MicroTemplate::File
SYNOPSIS
use Tiffany;
my $tiffany = Tiffany->load('Text::MicroTemplate::File');
my $output = $tiffany->render(\q{hello, <?= $_[0] ?>.}, 'john');
my $expected = "hello, john.";
is $output, $expected;
AUTHOR
Tokuhiro Matsuno