mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-11-18 12:00:58 +01:00
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
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>