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

NAME

Text::MetaMarkup::HTML - MM-to-HTML conversion

SYNOPSIS

    use Text::MetaMarkup::HTML;
    print Text::MetaMarkup::HTML->new->parse(file => $filename);

DESCRIPTION

This module extends Text::MetaMarkup and converts the parsed document to HTML.

Text::MetaMarkup::HTML adds special support for the following tags:

Paragraph tag style

Its contents are not subject to escaping and inline tag interpolation.

EXAMPLE

Input

    h1: Example

    This is just {i:an {b:example}}.

    * foo
    * bar
    * baz

Output

    <h1>Example</h1>

    <p>This is just <i>an <b>example</b></i>.

    <ol><li>foo</i>
    <li>bar</li>
    <li>baz</li></ol>

LICENSE

There is no license. This software was released into the public domain. Do with it what you want, but on your own risk. The author disclaims any responsibility.

AUTHOR

Juerd Waalboer <juerd@cpan.org> <http://juerd.nl/>