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
josephok b15d40e8a3 Update Parsedown.php
Changes the htmlentities() to htmlspecialchars(). The htmlentities() has some problems encoding non-english words(like Chinese)
2013-11-22 23:05:26 +08:00
tests implement URL auto-linking 2013-11-22 00:20:45 +02:00
.gitignore
.travis.yml
composer.json
LICENSE.txt
Parsedown.php Update Parsedown.php 2013-11-22 23:05:26 +08:00
phpunit.xml.dist
README.md update readme to match website 2013-11-20 23:10:03 +02:00

Parsedown

Fast, consistent and easy to use Markdown parser for PHP.

Home · Demo · Tests

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>