overleaf/server-ce/hotfix/5.0.5/pr_18819.patch

18 lines
660 B
Diff
Raw Normal View History

--- a/services/web/frontend/js/features/mathjax/load-mathjax.ts
+++ b/services/web/frontend/js/features/mathjax/load-mathjax.ts
@@ -64,6 +64,15 @@ export const loadMathJax = async (options?: {
.findID('Renderer')
.disable()
},
+ ready() {
+ window.MathJax.startup.defaultReady()
+ const safe = window.MathJax.startup.document.safe
+ safe.filterAttributes.set('fontfamily', 'filterFontFamily')
+ safe.filterMethods.filterFontFamily = (
+ _safe: any,
+ family: string
+ ) => family.split(/;/)[0]
+ },
},
}