icingaweb2/library/vendor/Parsedown
Thomas Gelf b6dbfaa6b8 Add image size support to parsedown 2014-02-21 14:03:47 +00: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 Add image size support to parsedown 2014-02-21 14:03:47 +00: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>