NAME
Text::Hogan -A mustache templating engine statement-for-statement cloned from hogan.js
VERSION
version 0.01
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" });
COPYRIGHT
Copyright (C) 2015 Lokku Ltd.
AUTHOR
Basically statement-for-statement copied from hogan.js by Twitter!
Alex Balhatchet (alex@lokku.com)