Skip to content

matiaslina/p6-markdown

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

68 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Other 100.0%