parsedown/README.md
2013-12-28 14:57:25 +02:00

812 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>