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
Haralan Dobrev afbc30067f Add .editorconfig for cross-editor configuration
See http://editorconfig.org/ for more.

Also added newline characters at the end of the files.
2014-04-17 22:15:06 +03:00
tests replace tabs with spaces 2014-04-17 13:34:17 +03:00
.editorconfig Add .editorconfig for cross-editor configuration 2014-04-17 22:15:06 +03:00
.travis.yml Run the testsuite on PHP 5.6 2014-02-12 19:13:14 +02:00
composer.json Add .editorconfig for cross-editor configuration 2014-04-17 22:15:06 +03:00
LICENSE.txt Add .editorconfig for cross-editor configuration 2014-04-17 22:15:06 +03:00
Parsedown.php nested calls to lines should not reset reference definitions 2014-04-17 15:07:09 +03:00
phpunit.xml.dist Add .editorconfig for cross-editor configuration 2014-04-17 22:15:06 +03:00
README.md improve readme 2014-04-17 11:22:49 +03:00

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>