MarkdownParser/README.md

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>