解决hexo渲染LaTex问题

1. 添加插件

npm install hexo-renderer-mathjax —save

2. 在设置中将mathjax设置为可用

theme/_config.yml

1
2
3
mathjax:
  enable: true
  per_page: true

3.在对应文章中加入渲染选项

1
2
3
4
5
6
7
8
title: 
date: 2020-08-31 20:52:27
categories:

tags:
-
mathjax: true
---