CHENXCHEN / hexo-renderer-markdown-it-plus

Markdown-it is a markdown parser, done right. A faster and CommonMark compliant alternative for Hexo.
https://chchc.me/hexo-article/2017/07/27/hexo-renderer-markdown-it-plus-plugin-demo/
MIT License
117 stars 22 forks source link

更新Katex版本 #10

Closed hzqjyyx closed 6 years ago

hzqjyyx commented 6 years ago

markdown-it-katex好像很久没有更新过了,有个fork过的iktakahiro/markdown-it-katex看起来做了一写修改,我想在_config.yml文件中禁用默认的markdown-it-katex,使用这个新的,但是看起来并没有效果。

markdown_it_plus:
  highlight: true
  html: true
  xhtmlOut: true
  breaks: true
  langPrefix:
  linkify: true
  typographer:
  quotes: “”‘’
  plugins:
  - plugin:
    name: '@iktakahiro/markdown-it-katex'
    enable: true
  - plugin:
    name: markdown-it-katex
    enable: false

使用了hexo-theme-next主题,在next/_config.yml中修改katex的版本为0.9.0. 请问如何做能使用这个库呢?

CHENXCHEN commented 6 years ago

我在本地测试了使用该插件是可用的。 你只需要引入 katex.min.css 就可以使用了 如: //cdnjs.cloudflare.com/ajax/libs/KaTeX/0.9.0/katex.min.css

markdown_it_plus:
    highlight: true
    html: true
    xhtmlOut: true
    breaks: true
    langPrefix:
    linkify: true
    typographer:
    quotes: “”‘’
    pre_class: highlight
    plugins:
        - plugin:
            name: markdown-it-mark
            enable: false
        - plugin:
            name: markdown-it-katex
            enable: false
        - plugin:
            name: '@iktakahiro/markdown-it-katex'
            enable: true
hzqjyyx commented 6 years ago

已经可以使用,太感谢了!

CHENXCHEN commented 6 years ago

我在 v1.0.3 版本 替换了默认的 markdown-it-katex 插件,在 v1.0.3 版本只需要引入 katex.min.css 即可