mathjax update to v3
This commit is contained in:
parent
2b9fc0a292
commit
4f3acae640
|
@ -3,3 +3,10 @@
|
||||||
overflow-y: hidden;
|
overflow-y: hidden;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
code.has-jax {
|
||||||
|
-webkit-font-smoothing: antialiased;
|
||||||
|
background: inherit !important;
|
||||||
|
border: none !important;
|
||||||
|
font-size: 100%;
|
||||||
|
}
|
File diff suppressed because one or more lines are too long
|
@ -33,14 +33,10 @@
|
||||||
<script>
|
<script>
|
||||||
window.MathJax = {
|
window.MathJax = {
|
||||||
tex: {
|
tex: {
|
||||||
inlineMath: [['$', '$']],
|
inlineMath: [['$', '$'], ['\\(', '\\)']],
|
||||||
displayMath: [['$$', '$$']],
|
displayMath: [['$$', '$$'], ['\\[', '\\]']],
|
||||||
processEscapes: true,
|
processEscapes: true,
|
||||||
processEnvironments: true,
|
processEnvironments: true,
|
||||||
tags: "ams"
|
|
||||||
},
|
|
||||||
chtml: {
|
|
||||||
scale: 1.1
|
|
||||||
},
|
},
|
||||||
options: {
|
options: {
|
||||||
skipHtmlTags: ['script', 'noscript', 'style', 'textarea', 'pre'],
|
skipHtmlTags: ['script', 'noscript', 'style', 'textarea', 'pre'],
|
||||||
|
@ -50,7 +46,7 @@
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
<script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script>
|
<script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script>
|
||||||
<script async src="{{ $js.mathjax.url }}"></script>
|
<script async src="{{ $js.mathjax.url }}" id="MathJax-script"></script>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
{{ if in .Params.Libraries "msc" }}
|
{{ if in .Params.Libraries "msc" }}
|
||||||
|
@ -501,6 +497,9 @@
|
||||||
|
|
||||||
|
|
||||||
// ============================ mathjax ============================
|
// ============================ mathjax ============================
|
||||||
|
document.querySelectorAll("mjx-container").forEach(function (x) {
|
||||||
|
x.parentElement.classList += 'has-jax'
|
||||||
|
});
|
||||||
// =================================================================
|
// =================================================================
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue