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

END_HTML ); }

sub line_break { my $self = shift; $self->_stream( "\n\n" ); }

sub html_entity { my $self = shift; my ($entity) = validated_list( \@_, entity => { isa => Str } );

    $self->_stream( "E<$entity>" );
}

__PACKAGE__->meta->make_immutable; no Moose; 1;

__END__

NAME

Markdown::Pod::Handler - Parser module to convert from markdown to POD

VERSION

version 0.005

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>

COPYRIGHT AND LICENSE

This software is copyright (c) 2013 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.