1
0
mirror of https://github.com/erusev/parsedown.git synced 2025-09-02 19:32:35 +02: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

View File

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