mirror of
https://github.com/erusev/parsedown.git
synced 2023-08-10 21:13:06 +03:00
code blocks get unwanted empty lines
This commit is contained in:
@@ -216,7 +216,12 @@ class Parsedown
|
||||
{
|
||||
if ($element['type'] === 'code')
|
||||
{
|
||||
isset($element['interrupted']) and $element['text'] .= "\n";
|
||||
if (isset($element['interrupted']))
|
||||
{
|
||||
$element['text'] .= "\n";
|
||||
|
||||
unset ($element['interrupted']);
|
||||
}
|
||||
|
||||
$element['text'] .= "\n".$matches[1];
|
||||
}
|
||||
|
Reference in New Issue
Block a user