Hexo解决mathjax乱码问题

尝试多种方法后,依旧对于一些复杂公式处理存在问题,marked和kramed都不能顺利解决,即使改了部分js文件。

解决方法

直接换用pandoc解决

1
2
npm uninstall hexo-renderer-marked --save
npm install hexo-renderer-pandoc --save

pandoc的markdown规范

hexo新版本实现自动摘要

1
npm install hexo-excerpt --save

全是设置添加一下内容,depth可以自行修改

1
2
3
4
5
excerpt:
depth: 10
excerpt_excludes: []
more_excludes: []
hideWholePostExcerpts: true

tips

多用谷歌,csdn全是抄来抄去,完全没法解决问题,两个小时浪费在了显示问题上,心痛。