支持数学公式

解决方案来自» 引入MathJax

添加文件layouts/partials/mathjax.html

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
{{ if .Params.math }}
<script>
  MathJax = {
    tex: {
      inlineMath: [["$", "$"]],
    },
    displayMath: [
      ["$$", "$$"],
      ["\[\[", "\]\]"],
    ],
    svg: {
      fontCache: "global",
    },
  };
</script>
<script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script>
<script
  id="MathJax-script"
  async
  src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"
></script>
{{ end }}

把这个partial模板添加该文件中,可以在footer.html中添加

1
2
3
4
<div class="icon-links">
  {{ partial "social_links.html" . }} 
  {{ partial "mathjax.html" . }}
</div>

在博客文档头部设置引用mathjax模版

1
math: true