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

NAME

Markdent::Simple::Fragment - Convert Markdown to an HTML Fragment

VERSION

version 0.24

SYNOPSIS

    use Markdent::Simple::Fragment;

    my $mds  = Markdent::Simple::Fragment->new();
    my $html = $mds->markdown_to_html(
        markdown => $markdown,
    );

DESCRIPTION

This class provides a very simple interface for converting Markdown to an HTML fragment.

METHODS

This class provides the following methods:

Markdent::Simple::Fragment->new()

Creates a new Markdent::Simple::Fragment object.

$mds->markdown_to_html( markdown => $markdown )

This method turns Markdown into HTML.

You can also provide an optional "dialect" parameter.

ROLES

This class does the Markdent::Role::Simple role.

BUGS

See Markdent for bug reporting details.

AUTHOR

Dave Rolsky <autarch@urth.org>

CONTRIBUTOR

Jason McIntosh <jmac@appleseed-sc.com>

COPYRIGHT AND LICENSE

This software is copyright (c) 2014 by Dave Rolsky.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.