mirror of https://github.com/jkjoy/sunpeiwen.git
40 lines
1.2 KiB
Plaintext
40 lines
1.2 KiB
Plaintext
|
<script>
|
||
|
if (!window.MathJax) {
|
||
|
window.MathJax = {
|
||
|
loader: {
|
||
|
source: {
|
||
|
'[tex]/amsCd': '[tex]/amscd'
|
||
|
}
|
||
|
},
|
||
|
tex: {
|
||
|
inlineMath: [ ['$','$'], ["\\(","\\)"]],
|
||
|
tags: 'ams'
|
||
|
},
|
||
|
options: {
|
||
|
renderActions: {
|
||
|
findScript: [10, doc => {
|
||
|
for (const node of document.querySelectorAll('script[type^="math/tex"]')) {
|
||
|
const display = !!node.type.match(/; *mode=display/)
|
||
|
const math = new doc.options.MathItem(node.textContent, doc.inputJax[0], display)
|
||
|
const text = document.createTextNode('')
|
||
|
node.parentNode.replaceChild(text, node)
|
||
|
math.start = {node: text, delim: '', n: 0}
|
||
|
math.end = {node: text, delim: '', n: 0}
|
||
|
doc.math.push(math)
|
||
|
}
|
||
|
}, '']
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
var script = document.createElement('script')
|
||
|
script.src = "<%= theme.mathjax.script %>"
|
||
|
script.id = 'MathJax-script'
|
||
|
script.async = true
|
||
|
document.head.appendChild(script)
|
||
|
} else {
|
||
|
MathJax.startup.document.state(0)
|
||
|
MathJax.texReset()
|
||
|
MathJax.typeset()
|
||
|
}
|
||
|
</script>
|