This module parses Markdown and generates HTML from it. It can be used to extract certain elements from a MD document or to generate other kind of things.
use Text::Markdown;
my $md = Text::Markdown.new($raw-md);
say $md.render;
or
use Text::Markdown;
my $md = parse-markdown($raw-md);
say $md.to_html;
Depends
on
HTML::Escape
. Install
it locally with
zef install HTML::Escape
Initial version by Andrew Egeler, with extensive additions by JMERELO and Altai-man
Check out the contributing guidelines. All contributions are welcome, and will be addressed.