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
This package is auto-updated.
Last update: 2026-05-29 01:17:32 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>