Add MathJax inline math support to Markdown #1640
Some checks are pending
MSBuild / build (push) Waiting to run
MSBuild / publish (push) Blocked by required conditions

This commit is contained in:
ema
2025-07-05 11:58:41 +08:00
parent 95f1c5bca2
commit 32ce27e447

View File

@@ -462,6 +462,13 @@
updateActiveHeading(currentHeading); updateActiveHeading(currentHeading);
} }
}); });
// Support MathJax inline math
window.MathJax = {
tex: {
inlineMath: [['$', '$'], ['\\(', '\\)']]
}
};
</script> </script>
<script id="MathJax-script" async src="mathjax/tex-mml-svg.js"></script> <script id="MathJax-script" async src="mathjax/tex-mml-svg.js"></script>