1
0
mirror of https://github.com/erusev/parsedown.git synced 2025-09-02 19:32:35 +02:00

nested elements should render on a new line

This commit is contained in:
Emanuil Rusev
2014-01-22 11:04:35 +02:00
parent 712dd23d30
commit e20c0a29bd

View File

@@ -563,6 +563,11 @@ class Parsedown
else
{
$markup .= $text;
if (isset($elements[2]))
{
$markup .= "\n";
}
}
}
else