oops
This commit is contained in:
Aidan Woods 2016-09-27 00:57:57 +01:00 committed by GitHub
parent 2772b034c6
commit 1c58e9d8d5
1 changed files with 1 additions and 1 deletions

View File

@ -505,7 +505,7 @@ class Parsedown
list($name, $pattern) = $Line['text'][0] <= '-' ? array('ul', '([*+-])') : array('ol', '([0-9]+)[.]');
if (preg_match('/^('.$pattern.'[ ]+)(.*)/', $Line['text'], $matches))
{
if($name === 'ol' && $matches[2] !== '1') $name. = ' start="' . $matches[2] . '"';
if($name === 'ol' && $matches[2] !== '1') $name .= ' start="' . $matches[2] . '"';
$Block = array(
'indent' => $Line['indent'],
'pattern' => $pattern,