logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Markdent::Dialect::GitHub - Markdown extensions implemented on GitHub

Author

       Dave Rolsky, <autarch@urth.org>

Bugs

       See Markdent for bug reporting details.

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 => ... );

See Also