We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8979f21 commit b0b417cCopy full SHA for b0b417c
1 file changed
public/js/extra.js
@@ -552,6 +552,10 @@ export function finishView (view) {
552
} catch (err) {
553
console.warn(err)
554
}
555
+ // unescape > symbel inside the style tags
556
+ view.find('style').each((key, value) => {
557
+ $(value).html($(value).html().replace(/>/g, '>'))
558
+ })
559
// render title
560
document.title = renderTitle(view)
561
0 commit comments