The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

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