$html
END_HTML ); }
sub line_break { my $self = shift; $self->_stream( "\n\n" ); }
__PACKAGE__->meta->make_immutable; no Moose; 1;
NAME
Markdown::Pod::Handler - Parser module to convert from markdown to POD
VERSION
version 0.003
SYNOPSIS
my $handler = Markdown::Pod::Handler->new(
encoding => $encoding,
output => $fh,
);
my $parser = Markdent::Parser->new(
dialect => $dialect,
handler => $handler,
);
DESCRIPTION
This module is a handler of Markdent Markdown parser. It converts Markdown to POD.
ATTRIBUTES
markdown
markdown text
encoding
encoding to use
METHODS
new
create Markdown::Pod::Handler object
markdown_to_pod
convert markdown text to POD text
SEE ALSO
AUTHOR
Keedi Kim - 김도형 <keedi@cpan.org>
CONTRIBUTOR
Abigail (ABIGAIL)
COPYRIGHT AND LICENSE
This software is copyright (c) 2012 by Keedi Kim.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.