KaTeX配置

  1. 卸载旧的渲染器

    1
    npm un hexo-renderer-marked --save
  2. 安装新的渲染器

    1
    npm i hexo-renderer-markdown-it-katex
  3. _config.yml配置文件添加如下内容

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    markdown:
    render:
    html: true
    xhtmlOut: false
    breaks: true
    linkify: true
    typographer: true
    plugins:
    anchors:
    level: 1
    collisionSuffix: ''
  4. 清理缓存

    1
    hexo clean
  5. 重新运行

    1
    hexo s
  6. 预览数学公式支持,查看以下公式 (2 * 2 = 232^3) 是否正常显示

    1
    2 * 2 = $2^3$