1
0
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:
Aidan Woods 2018-03-27 22:04:11 +01:00
parent 1c52cb6b5e
commit 790aed42ab
No known key found for this signature in database
GPG Key ID: 9A6A8EFAA512BBB9

View File

@ -505,7 +505,8 @@ class Parsedown
return;
}
$text = trim($Line['text'], '# ');
$text = trim($Line['text'], '#');
$text = trim($text, ' ');
$Block = array(
'element' => array(