mirror of
https://github.com/erusev/parsedown.git
synced 2023-08-10 21:13:06 +03:00
Revert "Prevent breaking remaining previously compliant CommonMarkWeak tests"
This reverts commit 6973302ca8
.
This commit is contained in:
parent
6973302ca8
commit
eb853da92a
@ -165,7 +165,7 @@ class Parsedown
|
|||||||
|
|
||||||
if (isset($CurrentBlock['continuable']))
|
if (isset($CurrentBlock['continuable']))
|
||||||
{
|
{
|
||||||
$Block = $this->{'block'.$CurrentBlock['type'].'Continue'}($Line, $CurrentBlock, $parentType);
|
$Block = $this->{'block'.$CurrentBlock['type'].'Continue'}($Line, $CurrentBlock);
|
||||||
|
|
||||||
if (isset($Block))
|
if (isset($Block))
|
||||||
{
|
{
|
||||||
@ -449,7 +449,7 @@ class Parsedown
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
protected function blockFencedCodeContinue($Line, $Block, $parentType)
|
protected function blockFencedCodeContinue($Line, $Block)
|
||||||
{
|
{
|
||||||
if (isset($Block['complete']))
|
if (isset($Block['complete']))
|
||||||
{
|
{
|
||||||
@ -472,11 +472,6 @@ class Parsedown
|
|||||||
return $Block;
|
return $Block;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($parentType === 'List')
|
|
||||||
{
|
|
||||||
$Line['body'] = preg_replace('/^[ ]{0,'.min(4, $Line['indent']).'}/', '', $Line['body']);
|
|
||||||
}
|
|
||||||
|
|
||||||
$Block['element']['text']['text'] .= "\n".$Line['body'];;
|
$Block['element']['text']['text'] .= "\n".$Line['body'];;
|
||||||
|
|
||||||
return $Block;
|
return $Block;
|
||||||
|
Loading…
Reference in New Issue
Block a user