mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-05-21 07:00:11 +02:00
16 lines
302 B
PHP
16 lines
302 B
PHP
<?php
|
|
/* Icinga Web 2 | (c) 2019 Icinga GmbH | GPLv2+ */
|
|
|
|
namespace Icinga\Web\Helper;
|
|
|
|
use Parsedown;
|
|
|
|
class Markdown
|
|
{
|
|
public static function text($content)
|
|
{
|
|
require_once 'Parsedown/Parsedown.php';
|
|
return HtmlPurifier::process(Parsedown::instance()->text($content));
|
|
}
|
|
}
|