Help language development. Donate to The Perl Foundation
Markit
, a Markdown parsing module for the Raku programming language.
use Markit;
my $md = Markdown.new;
say $md.markdown("# Raku Rocks!"); # «<h1>Raku Rocks!</h1>»
This module parses Markdown (MD) and generates HTML from it.
Similar to Parsedown, Markit tries to read a Markdown file like a human would. First, it looks at individual lines and check how the lines start in order to classify them into blocks of text (here a block is represented as a hash that contains information about the block of text. For instance, the block text, its type, the elements it contains, the routine it should be handled by, etc.). For example, if a line starts with a *
, then it could be either a list's item (i.e., li
) or a horizontal rule (i.e., hr
). Once it recognizes the block, Markit continues to the line's content. As it reads, it watches out for special characters that helps it recognize inline elements (e.g., *
for emphasis).
As stated in the Parsedown's repository, this is a "line-based" approach.
Using zef
:
zef update && zef install Markit
From source:
git clone [email protected]:uzluisf/raku-markit.git
cd geuse && zef install .
By default, Markit
exports the Markdown
class. The default instantiation
my $md-obj = Markdown.new;
is the same as
my $md-obj = Markdown.new:
breaks-enabled => False,
escape-markup => False,
urls-linked => True,
safe-mode => False,
strict-mode => False
;
Or more succintly:
my $md-obj = Markdown.new:
:!breaks-enabled,
:!escape-markup,
:urls-linked,
:!safe-mode,
:!strict-mode
;
The Markdown
class makes available only the markdown
method which must be called on an instance of the class. The following are the method's different signatures:
markdown($text)
- Convert Markdown to HTML markup and return it.
$md.markdown("# Raku Rocks!"); #=> <h1>Raku Rocks!</h1>
This module is a port of the PHP's Parsedown library written by Emanuil Rusev (https://github.com/erusev) and located at https://github.com/erusev/parsedown.
This program is free software; you can redistribute it and/or modify it under the Artistic License 2.0. See the LICENSE file included in this distribution for complete details.