NAME
Text::Xslate - High performance template engine
VERSION
This document describes Text::Xslate version 0.1005.
SYNOPSIS
use Text::Xslate;
use FindBin qw($Bin);
my %vars = (
title => 'A list of books',
books => [
{ title => 'Islands in the stream' },
{ title => 'Programming Perl' },
{ title => 'River out of Eden' },
{ title => 'Beautiful code' },
],
);
# for files
my $tx = Text::Xslate->new();
print $tx->render_file('hello.tx', \%vars);
# for strings
my $template = q{
<h1><: $title :></h1>
<ul>
: for $books ->($book) {
<li><: $book.title :></li>
: } # for
</ul>
};
$tx = Text::Xslate->new(
string => $template,
);
print $tx->render(\%vars);
# you can tell the engine that some strings are already escaped.
use Text::Xslate qw(escaped_string);
$vars{email} = escaped_string('gfx <gfuji at cpan.org>');
# or
$vars{email} = Text::Xslate::EscapedString->new(
'gfx <gfuji at cpan.org>',
); # if you don't want to pollute your namespace.
# if you want Template-Toolkit syntx:
$tx = Text::Xslate->new(syntax => 'TTerse');
# ...
DESCRIPTION
Text::Xslate is a template engine tuned for persistent applications. This engine introduces the virtual machine paradigm. That is, templates are compiled into xslate opcodes, and then executed by the xslate virtual machine just like as Perl does.
This software is under development. Version 0.1xxx is a developing stage, which may include radical changes. Version 0.2xxx and more will be somewhat stable.
Features
High performance
Xslate has an virtual machine written in XS, which is highly optimized. According to benchmarks, Xslate is 2-10 times faster than other template engines (Template-Toolkit, HTML::Template::Pro, Text::MicroTemplate, etc).
Template cascading
Xslate supports template cascading, which allows one to extend templates with block modifiers.
This mechanism is also called as template inheritance.
Syntax alternation
The Xslate engine and parser/compiler are completely separated so that one can use alternative parsers.
Currently, TTerse
, a Template-Toolkit-like parser, is supported as an alternative.
INTERFACE
Methods
Text::Xslate->new(%options) -> Xslate
Creates a new xslate template engine.
Possible options ares:
string => $template_string
-
Specifies the template string, which is called
<input>
internally. file => $template_file | \@template_files
-
Specifies file(s) to be preloaded. Note that
render()
loads files automatically, so this option is not necessarily required. path => \@path // ["."]
-
Specifies the include paths. Default to
<["."]
>. function => \%functions
-
Specifies functions.
Functions may be called as
f($arg)
or$arg | f
. cache => $level // 1
-
Sets the cache level.
If $level == 1 (default), Xslate caches compiled templates on the disk, and checks the freshness of the original templates every time.
If $level >= 2, caches will be created but the freshness will not be checked.
$level == 0 creates no caches. It's only for testing.
input_layer => $perliolayers // ":utf8"
-
Specifies PerlIO layers for reading templates.
syntax => $moniker
-
Specifies the template syntax.
If $moniker is undefined, the default parser will be used.
$tx->render($file, \%vars) -> Str
Renders a template with variables, and returns the result.
If $file is omitted, <input>
is used. See the string
option for new
.
Note that $file may be cached according to the cache level.
Exportable functions
escaped_string($str :Str) -> EscapedString
Mark $str as escaped. Escaped strings will not be escaped by the engine, so you have to escape these strings.
For example:
my $tx = Text::Xslate->new(
string => 'Mailaddress: <: $email :>',
);
my %vars = (
email => "Foo <foo@example.com>",
);
print $tx->render(\%email);
# => Mailaddress: Foo <foo@example.com>
TEMPLATE SYNTAX
There are syntaxes you can use:
- Kolon
-
Kolon is the default syntax, using
<: ... :>
tags and: ...
line code, which is explained in Text::Xslate::Syntax::Kolon. - Metakolon
-
Metakolon is the same as Kolon except for using
[% ... %]
tags and% ...
line code, instead of<: ... :>
and: ...
. - TTerse
-
TTerse is a syntax that is a subset of Template-Toolkit 2, called TTerse, which is explained in Text::Xslate::Syntax::TTerse.
DEPENDENCIES
Perl 5.10.0 or later, and a C compiler.
BUGS
All complex software has bugs lurking in it, and this module is no exception. If you find a bug please either email me, or add the bug to cpan-RT. Patches are welcome :)
SEE ALSO
Xslate template syntaxes:
Text::Xslate::Syntax::Metakolon
Other template modules:
Benchmarks:
AUTHOR
Fuji, Goro (gfx) <gfuji(at)cpan.org>
LICENSE AND COPYRIGHT
Copyright (c) 2010, Fuji, Goro (gfx). All rights reserved.
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.