Use $Parsedown->line instead of $Parsedown->text

Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
snipe 2023-07-11 11:33:29 +01:00
parent ba37a9db8c
commit 9b5a67e31f

View file

@ -29,7 +29,7 @@ class Helper
$Parsedown->setSafeMode(true);
if ($str) {
return $Parsedown->text($str);
return $Parsedown->line($str);
}
}