The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Template::Provider::Markdown - Markdown as template body, no HTML.

VERSION

Version 0.05

SYNOPSIS

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>

FUNCTIONS

_load()

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.

AUTHOR

Kang-min Liu, <gugod at gugod.org>

BUGS

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.

SUPPORT

You can find documentation for this module with the perldoc command.

    perldoc Template::Provider::Markdown

You can also look for information at:

COPYRIGHT & LICENSE

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.