起因
博客的行内latex数学公式一直显示有问题,换了hexo-renderer-pandoc。
首先安装pandoc程序
根据自己的系统安装最新版,会少很多问题。(旧版本兼容有问题。)
pandoc下载链接 (打开稍微需要点时间。)
下载好直接安装。
安装hexo-renderer-pandoc渲染器
首先卸载自己原来的hexo渲染器
如果原来是hexo-renderer-marked: npm uninstall hexo-renderer-marked --save
如果原来是hexo-renderer-kramed: npm uninstall hexo-renderer-kramed --save
如果是其他的,依次类推。
安装hexo-renderer-pandoc
npm install hexo-renderer-pandoc --save
根据自己hexo博客的主题修改Mathjax为True
在主题相应的yml配置文件下修改mathjax的enable
为true
(打开mathjax)。
测试
hexo clean
(清楚原来的缓存)
hexo g
(生成)
hexo d
(部署)
最后查看。(latex数学公式显示正常,部分不正常是因为自己公式的格式书写有问题。)