From 67598b789a1baabce0a34c75126df15c94be7168 Mon Sep 17 00:00:00 2001 From: speedie Date: Fri, 24 May 2024 23:44:30 +0200 Subject: [PATCH] Oops, forgot to add the description. --- core.php | 8 ++++++++ 1 file changed, 8 insertions(+) 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);