NAME
HTML::Template::Compiled::Plugin::Comma - HTC Plugin to commify numbers
SYNOPSIS
use HTML::Template::Compiled::Plugin::Comma;
my $htc = HTML::Template::Compiled->new(
plugin => [qw(HTML::Template::Compiled::Plugin::Comma)],
...
);
$htc->param( costs => 10000 );
$htc->output;
---
This item costs <TMPL_VAR costs ESCAPE=COMMA> dollar.
# Output:
# This item costs 10,000 dollar.
DESCRIPTION
HTML::Template::Compiled::Plugin::Comma is a plugin for HTC, which allows you to commify your numbers in templates. This would be especially useful for prices.
METHODS
register gets called by HTC
SEE ALSO
HTML::Template::Compiled
, "perldoc -q comma"
AUTHOR
hagy
COPYRIGHT AND LICENSE
Copyright (C) 2007 by hagy
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.6 or, at your option, any later version of Perl 5 you may have available.