package Text::Multi::Block::Markdown; use strict; use warnings; our $VERSION = '0.01'; our $ID = '$Id: Markdown.pm 6 2008-01-22 17:21:02Z jason $'; use base qw( Text::Multi::Block ); use Text::Markdown (); sub as_html { Text::Markdown::markdown( shift->content ) } 1; __END__ =head1 NAME Text::Multi::Block::Markdown - Text::Multi processor for Markdown blocks =head1 SYNOPSIS {{{ Markdown }}} =head1 DESCRIPTION This subclass of L uses L to process Markdown formatted text into HTML. For more information on Markdown's syntax, see L. =head1 PARAMETERS These are parameters that can be set in the L tag in your text document, to provide additional information to formatter modules, and potentially to influence how the content is rendered. Also see L for inherited parameters that can be used by this formatter. =head1 INTERNAL METHODS =head2 as_html() See L. =head1 SEE ALSO L L L L L =head1 AUTHOR Jason Kohles C<< >>. =head1 COPYRIGHT AND LICENSE Copyright (C) 2007 by Jason Kohles This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =cut