mirror of
https://github.com/erusev/parsedown.git
synced 2023-08-10 21:13:06 +03:00
expression assignments should be separate
This commit is contained in:
parent
3ac9b96e57
commit
250ba80356
@ -199,6 +199,7 @@ class Parsedown
|
|||||||
unset($block['first']);
|
unset($block['first']);
|
||||||
|
|
||||||
$block['last'] = true;
|
$block['last'] = true;
|
||||||
|
|
||||||
$block['lines'] = array(
|
$block['lines'] = array(
|
||||||
preg_replace('/^[ ]{0,4}/', '', $matches[3]),
|
preg_replace('/^[ ]{0,4}/', '', $matches[3]),
|
||||||
);
|
);
|
||||||
@ -320,6 +321,7 @@ class Parsedown
|
|||||||
}
|
}
|
||||||
|
|
||||||
$block['type'] = 'heading';
|
$block['type'] = 'heading';
|
||||||
|
|
||||||
$block['level'] = $line[0] === '-' ? 2 : 1;
|
$block['level'] = $line[0] === '-' ? 2 : 1;
|
||||||
|
|
||||||
continue 2;
|
continue 2;
|
||||||
|
Loading…
Reference in New Issue
Block a user