diff options
Diffstat (limited to 'application/formatter/BookmarkMarkdownFormatter.php')
-rw-r--r-- | application/formatter/BookmarkMarkdownFormatter.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/application/formatter/BookmarkMarkdownFormatter.php b/application/formatter/BookmarkMarkdownFormatter.php index f60c61f4..7797bfbf 100644 --- a/application/formatter/BookmarkMarkdownFormatter.php +++ b/application/formatter/BookmarkMarkdownFormatter.php | |||
@@ -57,6 +57,7 @@ class BookmarkMarkdownFormatter extends BookmarkDefaultFormatter | |||
57 | $processedDescription = $bookmark->getDescription(); | 57 | $processedDescription = $bookmark->getDescription(); |
58 | $processedDescription = $this->filterProtocols($processedDescription); | 58 | $processedDescription = $this->filterProtocols($processedDescription); |
59 | $processedDescription = $this->formatHashTags($processedDescription); | 59 | $processedDescription = $this->formatHashTags($processedDescription); |
60 | $processedDescription = $this->reverseEscapedHtml($processedDescription); | ||
60 | $processedDescription = $this->parsedown | 61 | $processedDescription = $this->parsedown |
61 | ->setMarkupEscaped($this->escape) | 62 | ->setMarkupEscaped($this->escape) |
62 | ->setBreaksEnabled(true) | 63 | ->setBreaksEnabled(true) |
@@ -195,4 +196,9 @@ class BookmarkMarkdownFormatter extends BookmarkDefaultFormatter | |||
195 | ); | 196 | ); |
196 | return $description; | 197 | return $description; |
197 | } | 198 | } |
199 | |||
200 | protected function reverseEscapedHtml($description) | ||
201 | { | ||
202 | return unescape($description); | ||
203 | } | ||
198 | } | 204 | } |