icingaweb2/library/Icinga/Web/Helper/Markdown.php
Eric Lippmann 662de28f85 License source files as GPL-3.0-or-later
Add SPDX license headers and mark source files as GPL-3.0-or-later to
preserve the option to relicense under later GPL versions.
2026-03-26 17:49:26 +01:00

36 lines
976 B
PHP

<?php
// SPDX-FileCopyrightText: 2019 Icinga GmbH <https://icinga.com>
// SPDX-License-Identifier: GPL-3.0-or-later
namespace Icinga\Web\Helper;
use Icinga\Web\Helper\Markdown\LinkTransformer;
use Parsedown;
class Markdown
{
public static function line($content, $config = null)
{
if ($config === null) {
$config = function (\HTMLPurifier_Config $config) {
$config->set('HTML.Parent', 'span'); // Only allow inline elements
LinkTransformer::attachTo($config);
};
}
return HtmlPurifier::process(Parsedown::instance()->line($content), $config);
}
public static function text($content, $config = null)
{
if ($config === null) {
$config = function (\HTMLPurifier_Config $config) {
LinkTransformer::attachTo($config);
};
}
return HtmlPurifier::process(Parsedown::instance()->text($content), $config);
}
}