1
0
mirror of https://github.com/erusev/parsedown.git synced 2023-08-10 21:13:06 +03:00
Better Markdown Parser in PHP https://parsedown.org
Go to file
Emanuil Rusev be366b63ea improve parsing of emphasis
**strong** and *em* and **strong** and *em*
2013-12-24 23:40:12 +02:00
tests improve parsing of emphasis 2013-12-24 23:40:12 +02:00
.gitignore
.travis.yml
composer.json
LICENSE.txt
Parsedown.php improve parsing of emphasis 2013-12-24 23:40:12 +02:00
phpunit.xml.dist
README.md improve readme 2013-12-15 03:32:34 +02:00

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