I wrote a plugin hexo-renderer-markdown-it-plus for fix it,and this article is a demo for hexo-renderer-markdown-it-plus
The hexo default hexo-renderer-marked do not support LaTex parser, you must referer external link to parse Latex grammar to html(That’s whathexo-theme-next did, hexo-theme-next use mathjax), and the mathjax and hexo-renderer-marked will cause some problem:
_ parse error, you must change x_i to x\_i(This problem had been fixed when i test.)
mark, ==mark==
I disable this in my blog. Becaulse i use = directly in my past article.
The markdown code show as below:
1. H~2~0 2. x^2^ 3. ++inserted++, ~~Delete~~ 4. $\KaTex$, example $x_i + y_i = z_i$ and $y_i + z_i = 10$ 5. :smile: :joy: :stuck_out_tongue: 6. toc&anchor(do not explain this) 7. deflist Term 1 : Definition 1 Term 2 with *inline markup* : Definition 2 { some code, part of Definition 2 } Third paragraph of definition 2. 8. abbr *[abbr]: hover this will show you something. 9. Look at the bottom[^hello] [^hello]: footnote 10. mark, `==mark==` I disable this in my blog. Becaulse i use `=` directly in my past article.