diff options
| author | Greg Roach <greg@subaqua.co.uk> | 2022-05-04 22:26:53 +0100 |
|---|---|---|
| committer | Greg Roach <greg@subaqua.co.uk> | 2022-05-04 22:26:53 +0100 |
| commit | d02b7c7773f708b834c9e4e32a2070eab0d8b8bf (patch) | |
| tree | 2ec962193f9d187e6cb6be85c5b014fb511296c9 | |
| parent | 28065790528836a647ac70c4321a0fa40e002ae8 (diff) | |
| download | webtrees-d02b7c7773f708b834c9e4e32a2070eab0d8b8bf.tar.gz webtrees-d02b7c7773f708b834c9e4e32a2070eab0d8b8bf.tar.bz2 webtrees-d02b7c7773f708b834c9e4e32a2070eab0d8b8bf.zip | |
CodeStyle
| -rw-r--r-- | app/Factories/MarkdownFactory.php | 2 |
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'])); } |
