oms-Media/Theme/Backend/Components/Media/markdown_raw.tpl.php
2023-06-13 18:55:51 +00:00

22 lines
424 B
PHP
Executable File

<?php
/**
* Karaka
*
* PHP Version 8.1
*
* @package Template
* @copyright Dennis Eichhorn
* @license OMS License 2.0
* @version 1.0.0
* @link https://jingga.app
*/
declare(strict_types=1);
use phpOMS\Utils\Parser\Markdown\Markdown;
?>
<article><?= Markdown::parse(
$this->getFileContent(($this->media->isAbsolute ? '' : __DIR__ . '/../../../../../../') . $this->media->getPath())
); ?></article>