mirror of
https://github.com/status-im/codimd.git
synced 2025-02-02 14:23:26 +00:00
Fix unescape > symbol inside the style tags to make the CSS works
This commit is contained in:
parent
8979f215ab
commit
b0b417cefc
@ -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…
x
Reference in New Issue
Block a user