2025-2-26-fixed
This commit is contained in:
57
themes/next/layout/_third-party/math/mathjax.swig
vendored
Normal file
57
themes/next/layout/_third-party/math/mathjax.swig
vendored
Normal file
@ -0,0 +1,57 @@
|
||||
{%- set mathjax_uri = theme.vendors.mathjax or '//cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js' %}
|
||||
|
||||
<script>
|
||||
if (typeof MathJax === 'undefined') {
|
||||
window.MathJax = {
|
||||
loader: {
|
||||
{%- if theme.math.mathjax.mhchem %}
|
||||
load: ['[tex]/mhchem'],
|
||||
{%- endif %}
|
||||
source: {
|
||||
'[tex]/amsCd': '[tex]/amscd',
|
||||
'[tex]/AMScd': '[tex]/amscd'
|
||||
}
|
||||
},
|
||||
tex: {
|
||||
inlineMath: {'[+]': [['$', '$']]},
|
||||
{%- if theme.math.mathjax.mhchem %}
|
||||
packages: {'[+]': ['mhchem']},
|
||||
{%- endif %}
|
||||
tags: 'ams'
|
||||
},
|
||||
options: {
|
||||
renderActions: {
|
||||
findScript: [10, doc => {
|
||||
document.querySelectorAll('script[type^="math/tex"]').forEach(node => {
|
||||
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);
|
||||
});
|
||||
}, '', false],
|
||||
insertedScript: [200, () => {
|
||||
document.querySelectorAll('mjx-container').forEach(node => {
|
||||
let target = node.parentNode;
|
||||
if (target.nodeName.toLowerCase() === 'li') {
|
||||
target.parentNode.classList.add('has-jax');
|
||||
}
|
||||
});
|
||||
}, '', false]
|
||||
}
|
||||
}
|
||||
};
|
||||
(function () {
|
||||
var script = document.createElement('script');
|
||||
script.src = '{{ mathjax_uri }}';
|
||||
script.defer = true;
|
||||
document.head.appendChild(script);
|
||||
})();
|
||||
} else {
|
||||
MathJax.startup.document.state(0);
|
||||
MathJax.texReset();
|
||||
MathJax.typeset();
|
||||
}
|
||||
</script>
|
||||
Reference in New Issue
Block a user