# Markdown Testing [http://discourse.codinghorror.com/t/standard-flavored-markdown/2382?page=2](http://discourse.codinghorror.com/t/standard-flavored-markdown/2382?page=2) > Check out how that [parses](http://johnmacfarlane.net/babelmark2/?text=%23+Hello+there%0A%0AThis+is+a+paragraph.%0A%0A-+one%0A-+two%0A-+three%0A-+four%0A%0A1.+pirate%0A2.+ninja%0A3.+zombie) 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. hr. # Hello there This is a paragraph. - one - two - three - four 1. pirate 2. ninja 3. zombie hr. Here's the HTML that the Perl Markdown module creates: code.

Hello there

This is a paragraph.

code.. markdown=yes toc=no