icingaweb2/library/vendor/Parsedown/README.md

789 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 <em>Parsedown</em>!</p>