MarkdownParser/README.md

789 B

Parsedown

Better Markdown parser for PHP.


home · 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>