Fix conversion.

This commit is contained in:
James Cole 2021-08-03 10:20:50 +02:00
parent 4b9f70db1c
commit d97f090f86
No known key found for this signature in database
GPG Key ID: B5669F9493CDE38D

View File

@ -95,7 +95,7 @@ class Help implements HelpInterface
if ('' !== $content) {
Log::debug('Content is longer than zero. Expect something.');
$converter = new CommonMarkConverter();
$content = $converter->convertToHtml($content);
$content = (string) $converter->convertToHtml($content);
}
return $content;