summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app/Factories/MarkdownFactory.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Factories/MarkdownFactory.php b/app/Factories/MarkdownFactory.php
index 5e60eefb44..4f8985d8fb 100644
--- a/app/Factories/MarkdownFactory.php
+++ b/app/Factories/MarkdownFactory.php
@@ -104,7 +104,7 @@ class MarkdownFactory implements MarkdownFactoryInterface
$converter = new MarkDownConverter($environment);
$html = $converter->convert($markdown)->getContent();
- $html = strtr($html, ["</p>\n<p>" => self::BREAK . self::BREAK ]);
+ $html = strtr($html, ["</p>\n<p>" => self::BREAK . self::BREAK]);
return trim(strip_tags($html, ['a', 'br']));
}