Markdown Testing

http://discourse.codinghorror.com/t/standard-flavored-markdown/2382?page=2

Check out how that parses in Babelmark.

15 different rendered outputs from 22 different Markdown parsers.

Here's the simple test markup that Atwood posted. This causes a problem that infuriates me with the Perl Markdown module, which is the extra space around the "four" item. Textile does not do this. It's annoying. I need to figure how to change that Perl module. I've already customized the Perl Markdown module for my own needs by supporting some additional formatting options.


Hello there

This is a paragraph.

  • one
  • two
  • three
  • four

    1. pirate
    2. ninja
    3. zombie

Here's the HTML that the Perl Markdown module creates:

<h1>Hello there</h1>

<p>This is a paragraph.</p>

<ul>
<li>one</li>
<li>two</li>
<li>three</li>
<li><p>four</p>

<ol>
<li>pirate</li>
<li>ninja</li>
<li>zombie</li>
</ol></li>
</ul>

From JR's : articles
119 words - 849 chars
created on
updated on - #
source - versions - backlinks



A     A     A     A     A

© 2013-2017 JotHut - Online notebook

current date: Apr 25, 2024 - 10:36 a.m. EDT