parsedown/README.md
2013-12-03 23:19:50 +02:00

777 B

Parsedown

Better Markdown parser for PHP.


demo · tests


Features

Installation

Include Parsedown.php or install the composer package.

Example

$text = 'Hello **Parsedown**!';

$result = Parsedown::instance()->parse($text);

echo $result; # prints: <p>Hello <strong>Parsedown</strong>!</p>