我正在学习关于 Laravel 的在线课程。本课程使用 League\commonmark 包将 markdown 转换为 html。
每当在应用程序中使用包时,我都会得到:
Unable to find corresponding renderer for block type League\CommonMark\Block\Element\Document
该应用程序使用以下演示者进行转换。
class PagePresenter extends AbstractPresenter
{
protected $markdown;
public function __construct($object, CommonMarkConverter $markdown)
{
$this->markdown = $markdown;
parent::__construct($object);
}
public function contentHtml()
{
return $this->markdown->convertToHtml($this->content);
}
}
谁能指出我正确的方向?