VuePress配置
# 支持数学公式
# 安装依赖
npm i markdown-it-texmath katex markdown-it
1
2
2
# 修改config.js
增加md.use(require('markdown-it-texmath'))
module.exports = {
markdown: {
extendMarkdown: md => {
md.use(require('markdown-it-texmath'))
}
}
}
1
2
3
4
5
6
7
2
3
4
5
6
7
# head.js 导入样式
['link', {rel:'stylesheet', href:'https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.css'}],
['script', {src: 'https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.js'}],
1
2
2
# 在线公式编辑器
编辑 (opens new window)
上次更新: 2023/11/24, 15:09:25