summaryrefslogtreecommitdiff
path: root/public/js
diff options
context:
space:
mode:
Diffstat (limited to 'public/js')
-rw-r--r--public/js/extra.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/public/js/extra.js b/public/js/extra.js
index bf388139..b23d732f 100644
--- a/public/js/extra.js
+++ b/public/js/extra.js
@@ -552,6 +552,10 @@ export function finishView (view) {
} catch (err) {
console.warn(err)
}
+ // unescape > symbel inside the style tags
+ view.find('style').each((key, value) => {
+ $(value).html($(value).html().replace(/>/g, '>'))
+ })
// render title
document.title = renderTitle(view)
}