1fe3e62df3
Migrate from Parsedown to Commonmark
57 Zeilen
1.1 KiB
PHP
57 Zeilen
1.1 KiB
PHP
<?php namespace Todaymade\Daux\Format\Base;
|
|
|
|
use League\CommonMark\CommonMarkConverter;
|
|
use Todaymade\Daux\Tree\Content;
|
|
|
|
abstract class MarkdownPage extends SimplePage
|
|
{
|
|
/**
|
|
* @var Content
|
|
*/
|
|
protected $file;
|
|
|
|
/**
|
|
* @var array
|
|
*/
|
|
protected $params;
|
|
|
|
public function __construct($title, $content)
|
|
{
|
|
$this->initializePage($title, $content);
|
|
}
|
|
|
|
public function setFile(Content $file)
|
|
{
|
|
$this->file = $file;
|
|
}
|
|
|
|
public function setParams(array $params)
|
|
{
|
|
$this->params = $params;
|
|
}
|
|
|
|
protected function getMarkdownConverter()
|
|
{
|
|
return new CommonMarkConverter();
|
|
}
|
|
|
|
protected function convertPage($content)
|
|
{
|
|
return $this->getMarkdownConverter()->convertToHtml($content);
|
|
}
|
|
|
|
protected function generatePage()
|
|
{
|
|
return $this->convertPage($this->content);
|
|
}
|
|
|
|
public static function fromFile(Content $file, $params)
|
|
{
|
|
$page = new static($file->title, file_get_contents($file->getPath()));
|
|
$page->setFile($file);
|
|
$page->setParams($params);
|
|
|
|
return $page;
|
|
}
|
|
}
|