Hexo渲染数学公式
卸载Marked渲染器,安装Markdown it Plus渲染器。
1
2npm uninstall hexo-renderer-marked --save
npm install hexo-renderer-markdown-it-plus --save配置
_config.yml
文件。1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16markdown_it_plus:
highlight: true
html: true
xhtmlOut: true
breaks: true
langPrefix:
linkify: true
typographer:
quotes: “”‘’
plugins:
- plugin:
name: markdown-it-katex
enable: true
- plugin:
name: markdown-it-mark
enable: false在博客html的head中加载Katex的CSS样式。
1
2
3vi themes/next/layout/_partial/head.swig
添加:
<link href="https://cdn.bootcss.com/KaTeX/0.7.1/katex.min.css" rel="stylesheet">最后重新编译部署。
可能会提示插件markdown-it-katex不存在,使用命令npm install markdown-it-katex --save
安装即可。
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 竹山一叶!
评论