Go to file
Emanuil Rusev e0901ee9c7 remove CONTRIBUTING.md 2014-04-17 11:47:53 +03:00
tests make parser class more extensible 2014-04-17 10:59:35 +03:00
.travis.yml Run the testsuite on PHP 5.6 2014-02-12 19:13:14 +02:00
LICENSE.txt improve license 2013-07-24 01:38:38 +03:00
Parsedown.php make parser class more extensible 2014-04-17 10:59:35 +03:00
README.md improve readme 2014-04-17 11:22:49 +03:00
composer.json remove the extra trailing comma from composer.json 2013-07-11 00:33:44 +03:00
phpunit.xml.dist improve indentation in phpunit.xml.dist 2013-07-22 00:01:48 +03:00

README.md

Parsedown

Better Markdown parser for PHP.

Features

Installation

Include Parsedown.php or install the composer package.

Example

$Parsedown = new Parsedown();

echo $Parsedown->text('Hello _Parsedown_!'); # prints: <p>Hello <em>Parsedown</em>!</p>