## Parsedown Fast and consistent [Markdown][1] parser for PHP. *** [home](http://parsedown.org/) · [demo](http://parsedown.org/explorer/) · [tests](http://parsedown.org/tests/) *** Other features include: * [ GitHub Flavored ][2] * tested in PHP 5.2, 5.3, 5.4 and 5.5 * friendly to international input ### Installation Include `Parsedown.php` or install [the composer package](https://packagist.org/packages/erusev/parsedown). ### Example ```php $text = 'Hello **Parsedown**!'; $result = Parsedown::instance()->parse($text); echo $result; # prints:

Hello Parsedown!

``` [1]: http://daringfireball.net/projects/markdown/ [2]: https://help.github.com/articles/github-flavored-markdown