.. | ||
.travis.yml | ||
composer.json | ||
LICENSE.txt | ||
Parsedown.php | ||
phpunit.xml.dist | ||
README.md |
Parsedown
Better Markdown parser for PHP.
Features
- Fast
- Consistent
- GitHub Flavored
- Tested in PHP 5.2, 5.3, 5.4, 5.5, 5.6 and hhvm
- Extensible
Installation
Include Parsedown.php
or install the composer package.
Example
$Parsedown = new Parsedown();
echo $Parsedown->text('Hello _Parsedown_!'); # prints: <p>Hello <em>Parsedown</em>!</p>