Markdown PHP 1.3 | the original parser

Welcome to the demo:

  1. Write Markdown text on the left
  2. Hit the Parse button or ⌘ + Enter
  3. See the result to on the right
Parsed in 0.44 ms
<p>Welcome to the demo:</p>

<ol>
<li>Write Markdown text on the left</li>
<li>Hit the <strong>Parse</strong> button or <code>⌘ + Enter</code></li>
<li>See the result to on the right</li>
</ol>
Parsedown | the parser that we created

Welcome to the demo:

  1. Write Markdown text on the left
  2. Hit the Parse button or ⌘ + Enter
  3. See the result to on the right
Parsed in 0.17 ms or 3 times faster
<p>Welcome to the demo:</p>
<ol>
<li>Write Markdown text on the left</li>
<li>Hit the <strong>Parse</strong> button or <code>⌘ + Enter</code></li>
<li>See the result to on the right</li>
</ol>