57caacb93f
Conflicts: application/controllers/AuthenticationController.php application/controllers/ErrorController.php application/views/scripts/authentication/login.phtml library/Icinga/Application/ApplicationBootstrap.php library/Icinga/Web/Controller/ActionController.php library/Icinga/Web/Hook.php library/Icinga/Web/Widget/Dashboard.php |
||
---|---|---|
.. | ||
.gitignore | ||
LICENSE.txt | ||
Parsedown.php | ||
README.md | ||
VERSION.txt |
README.md
Parsedown
Better Markdown parser for PHP.
Features
- fast
- consistent
- GitHub Flavored
- friendly to international input
- tested in PHP 5.2, 5.3, 5.4, 5.5 and hhvm
Installation
Include Parsedown.php
or install the composer package.
Example
$text = 'Hello _Parsedown_!';
$result = Parsedown::instance()->parse($text);
echo $result; # prints: <p>Hello <em>Parsedown</em>!</p>