This commit is contained in:
2019-05-30 18:52:14 +08:00
commit aa360a22bf
341 changed files with 30369 additions and 0 deletions

View File

@ -0,0 +1,20 @@
{% if theme.math.enable %}
{% set is_index_has_math = false %}
{# At home, check if there has `mathjax: true` post #}
{% if is_home() %}
{% for post in page.posts %}
{% if post.mathjax and not is_index_has_math %}
{% set is_index_has_math = true %}
{% endif %}
{% endfor %}
{% endif %}
{% if not theme.math.per_page or (is_index_has_math or page.mathjax) %}
{% if theme.math.engine == 'mathjax' %}
{% include 'mathjax.swig' %}
{% elif theme.math.engine == 'katex' %}
{% include 'katex.swig' %}
{% endif %}
{% endif %}
{% endif %}

View File

@ -0,0 +1,9 @@
<link rel="stylesheet" href="{{ theme.math.katex.cdn }}"/>
{% if theme.math.katex.copy_tex.enable %}
{% if theme.math.katex.copy_tex.copy_tex_js %}
<script src="{{ theme.math.katex.copy_tex.copy_tex_js }}"></script>
{% endif %}
{% if theme.math.katex.copy_tex.copy_tex_css %}
<link rel="stylesheet" href="{{ theme.math.katex.copy_tex.copy_tex_css }}"/>
{% endif %}
{% endif %}

View File

@ -0,0 +1,40 @@
<script type="text/x-mathjax-config">
{% if theme.math.mathjax.mhchem %}
MathJax.Ajax.config.path['mhchem'] = '{{ theme.math.mathjax.mhchem }}';
{% endif %}
MathJax.Hub.Config({
tex2jax: {
inlineMath: [ ['$', '$'], ['\\(', '\\)'] ],
processEscapes: true,
skipTags: ['script', 'noscript', 'style', 'textarea', 'pre', 'code']
},
TeX: {
{% if theme.math.mathjax.mhchem %}
extensions: ['[mhchem]/mhchem.js'],
{% endif %}
equationNumbers: {
autoNumber: 'AMS'
}
}
});
MathJax.Hub.Register.StartupHook('TeX Jax Ready', function() {
MathJax.InputJax.TeX.prefilterHooks.Add(function(data) {
if (data.display) {
var next = data.script.nextSibling;
while (next && next.nodeName.toLowerCase() === '#text') { next = next.nextSibling }
if (next && next.nodeName.toLowerCase() === 'br') { next.parentNode.removeChild(next) }
}
});
});
</script>
<script type="text/x-mathjax-config">
MathJax.Hub.Queue(function() {
var all = MathJax.Hub.getAllJax(), i;
for (i = 0; i < all.length; i += 1) {
document.getElementById(all[i].inputID + '-Frame').parentNode.className += ' has-jax';
}
});
</script>
<script src="{{ theme.math.mathjax.cdn }}"></script>