| 1234567891011121314151617181920212223242526272829303132 | <?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',		];	}}
 |