Text-MultiMarkdown-XS

This is an initial version (0.001_01) of a Perl module that wraps Fletcher T. Penney's MultiMarkdown 4 library.

Basic usage is:

use Text::MultiMarkdown::XS qw(markdown);

my $html = markdown($text, $options);

where $options is a hash reference. Valid keys are:

A false value for a boolean option can be specified as undef, 0, "false", or "off". Any other value is taken to be true. The string values "false" and "off" are case-insensitive.

More options will be added in future versions of the module.

The module includes the beginnings of a man output option. This compiles but is non-functional. When it is complete it will be submitted to the MultiMarkdown-4 repo.

Build instructions

Standard Perl build sequence:

perl Makefile.PL
make
make test
make install

Building requires a C compiler.

To Do