Scroll to navigation

README(3pm) User Contributed Perl Documentation README(3pm)

NAME

Text::Hogan - A mustache templating engine statement-for-statement cloned from hogan.js

DESCRIPTION

Text::Hogan is a statement-for-statement rewrite of hogan.js <http://twitter.github.io/hogan.js/> in Perl.

It is a mustache <https://mustache.github.io/> templating engine which supports pre-compilation of your templates into pure Perl code, which then renders very quickly.

It passes the full mustache spec <https://github.com/mustache/spec>.

SYNOPSIS

    use Text::Hogan::Compiler;
    my $text = "Hello, {{name}}!";
    my $compiler = Text::Hogan::Compiler->new;
    my $template = $compiler->compile($text);
    say $template->render({ name => "Alex" });

See Text::Hogan::Compiler and Text::Hogan::Template for more details.

TEMPLATE FORMAT

The template format is documented in mustache(5) <https://mustache.github.io/mustache.5.html>.

AUTHOR

Started out statement-for-statement copied from hogan.js by Twitter!

Alex Balhatchet (alex@balhatchet.net)

2016-12-25 perl v5.24.1