fa861c2c85
fixes #5518 |
||
---|---|---|
.. | ||
.gitignore | ||
LICENSE.txt | ||
Parsedown.php | ||
README.md | ||
VERSION.txt |
README.md
Parsedown
Better Markdown parser for PHP.
Features
- fast
- consistent
- GitHub Flavored
- friendly to international input
- tested in PHP 5.2, 5.3, 5.4, 5.5 and hhvm
Installation
Include Parsedown.php
or install the composer package.
Example
$text = 'Hello _Parsedown_!';
$result = Parsedown::instance()->parse($text);
echo $result; # prints: <p>Hello <em>Parsedown</em>!</p>