diff --git a/core.php b/core.php index 349a3fa..fcd2086 100755 --- a/core.php +++ b/core.php @@ -389,9 +389,17 @@ function convertMarkdownToHTML($contents) { } else if ($i == 3 && $license != "") { $text .= "$sep\n"; $text .= "\t$license"; + $text .= "\n"; + } else if ($i == 3) { + $text .= "\n"; } } + if ($description != "") { + $text .= "\t

$description

\n"; + } + + $text .= "\n"; $out = str_replace($matches[0], $text, $out);