2021-04-27 07:13:01 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
/* Icinga DB Web | (c) 2021 Icinga GmbH | GPLv2 */
|
|
|
|
|
|
2021-08-20 10:38:50 -04:00
|
|
|
namespace Icinga\Module\Icingadb\Widget;
|
2021-04-27 07:13:01 -04:00
|
|
|
|
|
|
|
|
use Icinga\Web\Helper\Markdown;
|
|
|
|
|
use ipl\Html\BaseHtmlElement;
|
|
|
|
|
use ipl\Html\DeferredText;
|
|
|
|
|
|
|
|
|
|
class MarkdownLine extends BaseHtmlElement
|
|
|
|
|
{
|
|
|
|
|
protected $tag = 'section';
|
|
|
|
|
|
|
|
|
|
protected $defaultAttributes = ['class' => ['markdown', 'inline']];
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* MarkdownLine constructor.
|
|
|
|
|
*
|
|
|
|
|
* @param string $line
|
|
|
|
|
*/
|
2021-09-22 04:21:15 -04:00
|
|
|
public function __construct(string $line)
|
2021-04-27 07:13:01 -04:00
|
|
|
{
|
|
|
|
|
$this->add((new DeferredText(function () use ($line) {
|
|
|
|
|
return Markdown::line($line);
|
|
|
|
|
}))->setEscaped(true));
|
|
|
|
|
}
|
|
|
|
|
}
|