canyin-project/ybcy/vendor/cebe/markdown/tests/MarkdownOLStartNumTest.php
2024-11-01 16:07:54 +08:00

33 lines
691 B
PHP

<?php
/**
* @copyright Copyright (c) 2014 Carsten Brandt
* @license https://github.com/cebe/markdown/blob/master/LICENSE
* @link https://github.com/cebe/markdown#readme
*/
namespace cebe\markdown\tests;
use cebe\markdown\Markdown;
/**
* Test support ordered lists at arbitrary number(`start` html attribute)
* @author Maxim Hodyrew <maximkou@gmail.com>
* @group default
*/
class MarkdownOLStartNumTest extends BaseMarkdownTest
{
public function createMarkdown()
{
$markdown = new Markdown();
$markdown->keepListStartNumber = true;
return $markdown;
}
public function getDataPaths()
{
return [
'markdown-data' => __DIR__ . '/markdown-ol-start-num-data',
];
}
}