Markdent::Dialect::GitHub - Markdown extensions implemented on GitHub
Contents
Bugs
See Markdent for bug reporting details.
Copyright & License
Copyright 2012 Dave Rolsky, All Rights Reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl
itself.
perl v5.38.2 2024-03-06 Markdent::Dialect::GitHub(3pm)
Description
The GitHub roles add parsing for some of the Markdown extensions used on GitHub. See
<http://github.github.com/github-flavored-markdown/> for details.
DEVIATIONS
The dialect differs from the GitHub implementation in a few ways.
• It doesn't yet implement the newline handling that GitHub specifies.
• It does not implement the GitHub specific auto-linking for SHAs, users, or projects. This is
intentional.
IMPLEMENTATIONDETAILS
When the start of a fenced code block includes a language indicator ("```perl"), the HTML output will
include that language as part of a class name on the "<code>" tag:
<pre><code class="language-perl">...</code></pre>
Name
Markdent::Dialect::GitHub - Markdown extensions implemented on GitHub
Synopsis
use Markdent::Parser;
my $parser = Markdent::Parser->new( dialect => 'GitHub', handler => ... );
