icingaweb2/library/vendor/Parsedown
Eric Lippmann fa861c2c85 Replace Mitchelf/Markdown with Parsedown
fixes #5518
2014-01-22 14:04:55 +01:00
..
.gitignore Replace Mitchelf/Markdown with Parsedown 2014-01-22 14:04:55 +01:00
LICENSE.txt Replace Mitchelf/Markdown with Parsedown 2014-01-22 14:04:55 +01:00
Parsedown.php Replace Mitchelf/Markdown with Parsedown 2014-01-22 14:04:55 +01:00
README.md Replace Mitchelf/Markdown with Parsedown 2014-01-22 14:04:55 +01:00
VERSION.txt Replace Mitchelf/Markdown with Parsedown 2014-01-22 14:04:55 +01:00

README.md

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>