mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-21 17:26:29 -05:00
Fix unescape > symbol inside the style tags to make the CSS works
This commit is contained in:
parent
8979f215ab
commit
b0b417cefc
1 changed files with 4 additions and 0 deletions
|
@ -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)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue