mirror of
https://github.com/ThunixdotNet/www.git
synced 2026-01-23 23:10:17 +00:00
21 lines
333 B
PHP
21 lines
333 B
PHP
<?php
|
|
|
|
class ParsedownExtraTest extends ParsedownTest
|
|
{
|
|
protected function initDirs()
|
|
{
|
|
$dirs = parent::initDirs();
|
|
|
|
$dirs []= dirname(__FILE__).'/data/';
|
|
|
|
return $dirs;
|
|
}
|
|
|
|
protected function initParsedown()
|
|
{
|
|
$Parsedown = new ParsedownExtra();
|
|
|
|
return $Parsedown;
|
|
}
|
|
}
|