Skip to content

Latest commit

 

History

History
39 lines (26 loc) · 2.05 KB

README.md

File metadata and controls

39 lines (26 loc) · 2.05 KB

Text::Markdown, a Markdown parsing module for Perl6 Build Status

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.

Example Usage

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;

Dependencies

Depends on HTML::Escape. Install it locally with

zef install HTML::Escape

Who

Initial version by Andrew Egeler, with extensive additions by JMERELO and Altai-man

Want to lend a hand?

Check out the contributing guidelines. All contributions are welcome, and will be addressed.