1
0
mirror of https://github.com/erusev/parsedown.git synced 2025-09-02 19:32:35 +02:00

More expensive statement last

This commit is contained in:
Aidan Woods
2018-04-09 02:32:01 +01:00
parent 7e15d99d90
commit 450a74fedf

View File

@@ -773,10 +773,8 @@ class Parsedown
return;
}
if (
chop(chop($Line['text'], ' '), $Line['text'][0]) === ''
and $Line['indent'] < 4
) {
if ($Line['indent'] < 4 and chop(chop($Line['text'], ' '), $Line['text'][0]) === '')
{
$Block['element']['name'] = $Line['text'][0] === '=' ? 'h1' : 'h2';
return $Block;