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::Xslate - Tiffany gateway for Text::Xslate

SYNOPSIS

    use Tiffany;

    my $tiffany = Tiffany->load('Text::Xslate', {syntax => 'TTerse'});
    my $output = $tiffany->render(\q{hello, [% name %].}, {name => 'john'});
    my $expected = "hello, john.";

    is $output, $expected;

AUTHOR

Tokuhiro Matsuno