daux.io/libs/Format/HTML/ContentTypes/Markdown/ContentType.php

11 lines
291 B
PHP
Raw Normal View History

<?php namespace Todaymade\Daux\Format\HTML\ContentTypes\Markdown;
use Todaymade\Daux\Config;
class ContentType extends \Todaymade\Daux\ContentTypes\Markdown\ContentType
{
protected function createConverter() {
return new CommonMarkConverter(['daux' => $this->config]);
}
}