-
-
17 Dec 2019 21:54:36 UTC
- Distribution: Text-Hogan
- Module version: 2.03
- Source (raw)
- Browse (raw)
- Changes
- How to Contribute
- Repository
- Issues (0)
- Testers (51 / 0 / 0)
- Kwalitee
Bus factor: 0- 78.39% Coverage
- License: perl_5
- Perl: v5.10.0
- Activity
24 month- Tools
- Download (27.12KB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Latest version
NAME
Text::Hogan - A mustache templating engine statement-for-statement cloned from hogan.js
VERSION
version 2.03
DESCRIPTION
Text::Hogan is a statement-for-statement rewrite of hogan.js in Perl.
It is a mustache templating engine which supports pre-compilation of your templates into pure Perl code, which then renders very quickly.
It passes the full 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).
SEE ALSO
hogan.js
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::Caml
Text::Caml supports searching for partials by file name, by default .caml but that can be configured.
Template::Mustache
Template::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::Simple
Mustache::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.
AUTHORS
Started 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
Module Install Instructions
To install Text::Hogan, copy and paste the appropriate command in to your terminal.
cpanm Text::Hogan
perl -MCPAN -e shell install Text::Hogan
For more information on module installation, please visit the detailed CPAN module installation guide.