| Markdent documentation | view source | Contained in the Markdent distribution. |
Markdent::Simple::Fragment - Convert Markdown to an HTML Fragment
version 0.17
use Markdent::Simple::Fragment;
my $mds = Markdent::Simple::Fragment->new();
my $html = $mss->markdown_to_html(
title => 'My Fragment',
markdown => $markdown,
);
This class provides a very simple interface for converting Markdown to an HTML fragment.
This class provides the following methods:
Creates a new Markdent::Simple::Fragment object.
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.
See Markdent for bug reporting details.
Dave Rolsky <autarch@urth.org>
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.
| Markdent documentation | view source | Contained in the Markdent distribution. |