| Template-Provider-Markdown documentation | Contained in the Template-Provider-Markdown distribution. |
Template::Provider::Markdown - Markdown as template body, no HTML.
Version 0.05
This module import Markdown syntax as the body of template. You don't live with HTML anymore.
use Template;
use Template::Provider::Markdown;
my $tt = Template->new(
LOAD_TEMPLATES => [ Template::Provider::Markdown->new ]
);
my $template = 'My name is [% author %]';
print $tt->process(\$template, { author => "Charlie" });
<p>My name is Charlie</p>
This function is the entry point as a Template::Provider. You shouldn't call any functions in this module, but rather just use this module as the way in SYNOPSIS.
Kang-min Liu, <gugod at gugod.org>
Please report any bugs or feature requests to
bug-template-provider-markdown at rt.cpan.org, or through the web interface at
http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Template-Provider-Markdown.
I will be notified, and then you'll automatically be notified of progress on
your bug as I make changes.
You can find documentation for this module with the perldoc command.
perldoc Template::Provider::Markdown
You can also look for information at:
http://rt.cpan.org/NoAuth/Bugs.html?Dist=Template-Provider-Markdown
Copyright 2006,2007,2008,2009 Kang-min Liu, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| Template-Provider-Markdown documentation | Contained in the Template-Provider-Markdown distribution. |
package Template::Provider::Markdown; use 5.008; use warnings; use strict; use Text::Markdown 'markdown'; use base qw( Template::Provider );
our $VERSION = '0.05';
sub _load { my $self = shift; my ($data, $error) = $self->SUPER::_load(@_); $data->{text} = markdown($data->{text}); return ($data, $error); }
1; # End of Template::Provider::Markdown