mirror of
https://github.com/Icinga/icingaweb2.git
synced 2026-05-28 04:02:39 -04:00
Add SPDX license headers and mark source files as GPL-3.0-or-later to preserve the option to relicense under later GPL versions.
36 lines
976 B
PHP
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);
|
|
}
|
|
}
|