Better Markdown parser for PHP.
- fast
- consistent
- GitHub Flavored
- tested in PHP 5.2, 5.3, 5.4 and 5.5
- friendly to international input
Include Parsedown.php
or install the composer package.
$text = 'Hello **Parsedown**!';
$result = Parsedown::instance()->parse($text);
echo $result; # prints: <p>Hello <strong>Parsedown</strong>!</p>