mirror of
https://github.com/erusev/parsedown.git
synced 2023-08-10 21:13:06 +03:00
Fix trimming of internal #'s
This commit is contained in:
parent
1c52cb6b5e
commit
790aed42ab
@ -505,7 +505,8 @@ class Parsedown
|
||||
return;
|
||||
}
|
||||
|
||||
$text = trim($Line['text'], '# ');
|
||||
$text = trim($Line['text'], '#');
|
||||
$text = trim($text, ' ');
|
||||
|
||||
$Block = array(
|
||||
'element' => array(
|
||||
|
Loading…
Reference in New Issue
Block a user