1
0
mirror of https://github.com/erusev/parsedown.git synced 2023-08-10 21:13:06 +03: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