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


Markdent documentation  | view source Contained in the Markdent distribution.

Index


NAME

Top

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

VERSION

Top

version 0.17

SYNOPSIS

Top

    use Markdent::Simple::Document;

    my $mds  = Markdent::Simple::Document->new();
    my $html = $mss->markdown_to_html(
        title    => 'My Document',
        markdown => $markdown,
    );

DESCRIPTION

Top

This class provides a very simple interface for converting Markdown to a complete HTML document.

METHODS

Top

This class provides the following methods:

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

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

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

This method turns Markdown into HTML. You must provide a title as well, which will be used as the <title> for the resulting HTML document.

You can also provide an optional "dialect" parameter.

BUGS

Top

See Markdent for bug reporting details.

AUTHOR

Top

Dave Rolsky <autarch@urth.org>

COPYRIGHT AND LICENSE

Top


Markdent documentation  | view source Contained in the Markdent distribution.