Markdown: Allow to pass purifier config and provide a default
This commit is contained in:
parent
5f8704e635
commit
197f42557a
|
@ -3,20 +3,36 @@
|
||||||
|
|
||||||
namespace Icinga\Web\Helper;
|
namespace Icinga\Web\Helper;
|
||||||
|
|
||||||
|
use Icinga\Web\Helper\Markdown\LinkTransformer;
|
||||||
use Parsedown;
|
use Parsedown;
|
||||||
|
|
||||||
class Markdown
|
class Markdown
|
||||||
{
|
{
|
||||||
public static function line($content)
|
public static function line($content, $config = null)
|
||||||
{
|
{
|
||||||
require_once 'Parsedown/Parsedown.php';
|
require_once 'Parsedown/Parsedown.php';
|
||||||
|
|
||||||
return HtmlPurifier::process(Parsedown::instance()->line($content));
|
if ($config === null) {
|
||||||
|
$config = function (\HTMLPurifier_Config $config) {
|
||||||
|
$config->set('HTML.Parent', 'span'); // Only allow inline elements
|
||||||
|
|
||||||
|
LinkTransformer::attachTo($config);
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
public static function text($content)
|
return HtmlPurifier::process(Parsedown::instance()->line($content), $config);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function text($content, $config = null)
|
||||||
{
|
{
|
||||||
require_once 'Parsedown/Parsedown.php';
|
require_once 'Parsedown/Parsedown.php';
|
||||||
return HtmlPurifier::process(Parsedown::instance()->text($content));
|
|
||||||
|
if ($config === null) {
|
||||||
|
$config = function (\HTMLPurifier_Config $config) {
|
||||||
|
LinkTransformer::attachTo($config);
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
return HtmlPurifier::process(Parsedown::instance()->text($content), $config);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue