Debug v21

This commit is contained in:
Laurent Destailleur 2024-11-09 16:57:23 +01:00
parent cf65b5346c
commit eb64a1a3f6

View File

@ -571,7 +571,7 @@ class Parsedown
#
# List
protected function blockList($Line, ?array $CurrentBlock = null)
protected function blockList($Line, $CurrentBlock = null)
{
list($name, $pattern) = $Line['text'][0] <= '-' ? array('ul', '[*+-]') : array('ol', '[0-9]{1,9}+[.\)]');
@ -808,7 +808,7 @@ class Parsedown
#
# Setext
protected function blockSetextHeader($Line, ?array $Block = null)
protected function blockSetextHeader($Line, $Block = null)
{
if ( ! isset($Block) or $Block['type'] !== 'Paragraph' or isset($Block['interrupted']))
{