Vitepress 的一些配置 
emmmm
vitepress 很好用,也有很多问题...
LaTeX Support 
存在的问题
markdown-it-katex 和 markdown-it-mathjax3 两个插件都支持 LaTeX 公式的引入,前者对 \begin{aligned} 等语句的支持不好,后者基于前者有了很多改进。
1. 安装 markdown-it-mathjax3 
markdown-it-mathjax3主页
shell
yarn add -D markdown-it-mathjax32. 配置 vitepress 
js
import { MarkdownItMathjax3 } from "markdown-it-mathjax3"; 
export default {
  markdown: {
    config: (md) => {
      md.use(markdownItMathjax3); 
    },
    lineNumbers: true,
  },
  vue: {
    template: {
      compilerOptions: {
        isCustomElement: (tag) => customElements.includes(tag), 
      },
    },
  },
};customElements
js
const customElements = [
  "mjx-container",
  "mjx-assistive-mml",
  "math",
  "maction",
  "maligngroup",
  "malignmark",
  "menclose",
  "merror",
  "mfenced",
  "mfrac",
  "mi",
  "mlongdiv",
  "mmultiscripts",
  "mn",
  "mo",
  "mover",
  "mpadded",
  "mphantom",
  "mroot",
  "mrow",
  "ms",
  "mscarries",
  "mscarry",
  "mscarries",
  "msgroup",
  "mstack",
  "mlongdiv",
  "msline",
  "mstack",
  "mspace",
  "msqrt",
  "msrow",
  "mstack",
  "mstack",
  "mstyle",
  "msub",
  "msup",
  "msubsup",
  "mtable",
  "mtd",
  "mtext",
  "mtr",
  "munder",
  "munderover",
  "semantics",
  "math",
  "mi",
  "mn",
  "mo",
  "ms",
  "mspace",
  "mtext",
  "menclose",
  "merror",
  "mfenced",
  "mfrac",
  "mpadded",
  "mphantom",
  "mroot",
  "mrow",
  "msqrt",
  "mstyle",
  "mmultiscripts",
  "mover",
  "mprescripts",
  "msub",
  "msubsup",
  "msup",
  "munder",
  "munderover",
  "none",
  "maligngroup",
  "malignmark",
  "mtable",
  "mtd",
  "mtr",
  "mlongdiv",
  "mscarries",
  "mscarry",
  "msgroup",
  "msline",
  "msrow",
  "mstack",
  "maction",
  "semantics",
  "annotation",
  "annotation-xml",
];3. CSS 中引入 
js
mjx-container { 
  display: inline-block; 
  margin: auto 2px -2px; 
} 
mjx-container > svg { 
  margin: auto; 
} header 抖动 
存在的问题
窗口切换不同尺寸,header 会出现抖动。
stylus
header {
  .container {
    margin: 0 0 0 0!important; 
    max-width: calc(var(--vp-layout-max-width))!important; 
    @media (min-width: 960px) {
      .content-body {
        width: calc(100vw - 200px); 
      }
    }
  }
}