NAME

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

VERSION

version 0.08

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.

SEE ALSO

Text::Caml

Text::Caml is a very good mustache-like templating engine, but does not support pre-compilation.

Template::Mustache

Template::Mustache is a module written by Pieter van de Bruggen and Ricardo Signes. Currently has no POD. Used by Dancer::Template::Mustache.

COPYRIGHT

Copyright (C) 2015 Lokku Ltd.

AUTHOR

Statement-for-statement copied from hogan.js by Twitter!

Alex Balhatchet (alex@lokku.com)