NAME
Markdent::Simple::Fragment - Convert Markdown to an HTML Fragment
VERSION
version 0.20
SYNOPSIS
use Markdent::Simple::Fragment;
my $mds = Markdent::Simple::Fragment->new();
my $html = $mss->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.
BUGS
See Markdent for bug reporting details.
AUTHOR
Dave Rolsky <autarch@urth.org>
COPYRIGHT AND LICENSE
This software is copyright (c) 2010 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.