diff options
| author | Henry Jameson <me@hjkos.com> | 2022-02-03 22:58:12 +0200 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2022-02-03 22:58:12 +0200 |
| commit | 39ecb338830a71c015688e7ec45e16e1151983d3 (patch) | |
| tree | f68aee541e8b2ea31dc305c8656cd422cc2338e0 | |
| parent | 0f0193130963123998d3247426f3b3c9c60f2aa2 (diff) | |
fix amps in links
| -rw-r--r-- | src/components/rich_content/rich_content.jsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/rich_content/rich_content.jsx b/src/components/rich_content/rich_content.jsx index 46bc661a..8ebabad7 100644 --- a/src/components/rich_content/rich_content.jsx +++ b/src/components/rich_content/rich_content.jsx @@ -60,7 +60,7 @@ export default Vue.component('RichContent', { // NEVER EVER TOUCH DATA INSIDE RENDER render (h) { // Pre-process HTML - const { newHtml: html } = preProcessPerLine(this.html, this.greentext) + const { newHtml: html } = preProcessPerLine(unescape(this.html), this.greentext) let currentMentions = null // Current chain of mentions, we group all mentions together // This is used to recover spacing removed when parsing mentions let lastSpacing = '' |
