blesta / parsedown
Parser for Markdown.
2.0.1
2022-11-02 17:37 UTC
Requires
- php: >=7.2.0
Requires (Dev)
- phpunit/phpunit: ~4.8
- dev-master
- 2.0.x-dev
- 2.0.1
- 2.0.0
- 1.0.x-dev
- 1.0.0
- 1.0.0-rc.4
- 1.0.0-rc.3
- 1.0.0-rc.2
- 1.0.0-rc.1
- 0.9.4
- 0.9.3
- 0.9.2
- 0.9.1
- 0.9.0
- 0.8.3
- 0.8.2
- 0.8.1
- 0.8.0
- 0.7.7
- 0.7.6
- 0.7.5
- 0.7.4
- 0.7.3
- 0.7.2
- 0.7.1
- 0.7.0
- 0.6.0
- 0.5.0
- 0.4.8
- 0.4.7
- 0.4.6
- 0.4.5
- 0.4.4
- 0.4.3
- 0.4.2
- 0.4.1
- 0.4.0
- 0.3.0
- 0.2.1
- 0.2.0
- 0.1.5
- 0.1.4
- 0.1.3
- 0.1.2
- 0.1.1
- 0.1.0
- dev-fixed-possible-undifined-index
- dev-CORE-4432
This package is auto-updated.
Last update: 2024-10-30 01:47:45 UTC
README
Better Markdown parser for PHP.
Features
- Fast
- Consistent
- GitHub Flavored
- Tested in PHP 5.3 to 7.2 and hhvm
- Extensible
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>