This is Perl module Text::Xslate.
NAME
Text::Xslate - Scalable template engine for Perl5
SYNOPSIS
use Text::Xslate;
my $tx = Text::Xslate->new();
my %vars = (
title => 'A list of books',
books => [
{ title => 'Islands in the stream' },
{ title => 'Programming Perl' },
# ...
],
);
my $template = q{
<h1><
more»
=head1 NAME
Text::Xslate::Manual::FAQ - Frequently asked questions and answers
=head1 DESCRIPTION
This manual page lists FAQs, which we've heard for now.
=head1 QUESTIONS
=head2 General
=head3 How do you pronounce 'Xslate'?
We read it C</eks-leit/>.
=head3 What 'Xslate' stands for?
It stands for I<XS template>, a template engine written in XS, although
pure Perl implementations are also
more»