Parsedown Versions Save

Better Markdown Parser in PHP

0.8.0

10 years ago

Version 0.8 features a new approach to parsing inline elements. Along with performance, it improves consistency.

To give an example, here are a markdown text and a comparison of the output that it would produce.

*em **strong em***
***strong em** em*
*em **strong em** em*

The parser used by GitHub.com:

<em>em *</em>strong em***
<em>**strong em</em>* em*
<em>em *</em>strong em** em*

Parsedown:

<p><em>em <strong>strong em</strong></em>
<strong><em>strong em</em>* em*
*em </strong>strong em*<em> em</em></p>

Additionally, version 0.8 features an option to enable automatic line breaks.

0.7.0

10 years ago

0.6.0

10 years ago

0.5.0

10 years ago
  • support for fenced code block
  • performance improvements
  • code quality improvements

0.4.0

10 years ago
  • escaping for special characters
  • performance improvements

0.3.0

10 years ago
  • HTML support
  • Improved code block parsing