vuepress-theme-reco设置math公式
2022/1/3 6:07:53
本文主要是介绍vuepress-theme-reco设置math公式,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
直接使用过vuepress不支持数学公式,然后我找了下一个支持数学公式的方法,找到了一个仓库,但是爬了很多坑,就把这个坑记录以下,方便以后自己查阅也方便后来人。
目录- 一、开始
- 二、步骤
- 2.1 安装库
- 2.2 修改config.js文件
- 2.3 在head中导入样式文件
一、开始
使用的仓库就是这个:https://gitee.com/mirrors_GerHobbelt/markdown-it-texmath?_from=gitee_search
这个仓库安装官网的教程来发现数学公式缺少样式,就是一拖干巴巴的html代码,于是我看到它引入的文件中只给了两个文件,发现上面有五个文件,就找了下,凑齐了剩余的三个文件。
二、步骤
2.1 安装库
安装命令如下:
npm i markdown-it-texmath
2.2 修改config.js文件
(就展示要改的部分,其他部分省略)
markdown: { lineNumbers: true, anchor: { permalink: false }, toc: {includeLevel: [1,2]}, extendMarkdown: md => { md.use(require('markdown-it-texmath')) } }
2.3 在head中导入样式文件
代码如下:
['link', {rel:'stylesheet', href:'https://cdn.jsdelivr.net/npm/katex@0.15.1/dist/katex.min.css'}], ['link', {rel:'stylesheet', href:'https://gitcdn.xyz/cdn/goessner/markdown-it-texmath/master/texmath.css'}], ['script', {src: 'https://github.com/markdown-it/markdown-it/blob/master/bin/markdown-it.js'}], ['script', {src: 'https://gitcdn.xyz/cdn/goessner/markdown-it-texmath/master/texmath.js'}], ['script', {src: 'https://cdn.jsdelivr.net/npm/katex@0.15.1/dist/katex.min.js'}],
完毕!
这篇关于vuepress-theme-reco设置math公式的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2025-01-04React 19 来了!新的编译器简直太棒了!
- 2025-01-032025年Node.js与PHP大比拼:挑选最适合的后端技术进行现代web开发
- 2025-01-03?? 用 Gemini API、Next.js 和 TailwindCSS 快速搭建 AI 推文生成项目 ??
- 2024-12-31Vue CLI多环境配置学习入门
- 2024-12-31Vue CLI学习入门:一步一步搭建你的第一个Vue项目
- 2024-12-31Vue3公共组件学习入门:从零开始搭建实用组件库
- 2024-12-31Vue3公共组件学习入门教程
- 2024-12-31Vue3学习入门:新手必读教程
- 2024-12-31Vue3学习入门:初学者必备指南
- 2024-12-30Vue CLI多环境配置教程:轻松入门指南