better approach to unescaping

This commit is contained in:
Henry Jameson 2022-02-03 23:13:28 +02:00
parent 39ecb33883
commit 571e73a346
2 changed files with 3 additions and 2 deletions

View file

@ -60,7 +60,7 @@ export default Vue.component('RichContent', {
// NEVER EVER TOUCH DATA INSIDE RENDER
render (h) {
// Pre-process HTML
const { newHtml: html } = preProcessPerLine(unescape(this.html), this.greentext)
const { newHtml: html } = preProcessPerLine(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 = ''