|
NAMEText::Hogan - A mustache templating engine statement-for-statement cloned from hogan.jsVERSIONversion 2.03DESCRIPTIONText::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>. SYNOPSISuse 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 FORMATThe template format is documented in mustache(5) <https://mustache.github.io/mustache.5.html>.SEE ALSOhogan.jshogan.js <http://twitter.github.io/hogan.js/> is the original library that Text::Hogan is based on. It was written and is maintained by Twitter. It runs on Node.js and pre-compiles templates to pure JavaScript.Text::CamlText::Caml supports searching for partials by file name, by default .caml but that can be configured.Template::MustacheTemplate::Mustache is used by Dancer::Template::Mustache and Dancer2::Template::Mustache. It supports compile once, render many times, but does not allow dumping the compiled form to disk.Mustache::SimpleMustache::Simple largely supports the Mustache spec, but skips the whitespace and decimal tests (its behaviour with decimals is the same as Text::Hogan with 'numeric_string_as_string' option enabled.) It supports passing objects with getters to the context hash, so that {{name}} can be rendered from $object->name if $object->can('name') returns true.AUTHORSStarted out statement-for-statement copied from hogan.js by Twitter!Initial translation by Alex Balhatchet (alex@balhatchet.net) Further improvements from: Ed Freyfogle Mohammad S Anwar Ricky Morse Jerrad Pierce Tom Hukins Tony Finch Yanick Champoux
Visit the GSP FreeBSD Man Page Interface. |