0%

guides

新建 post

终端输入命令:

1
$ hexo new "My New Post"

front-matter 配置

如下图所示,post 文件的开头部分称作 front-matter.

front-matter.png

Front-matter 是文件开头的 YAML 或 JSON 代码块,用于配置写作设置. 以 YAML 格式书写时,Front-matter 以三个破折号结束;以 JSON 格式书写时,Front-matter 以三个分号结束.

front-matter_format.png

Front-matter 各设置项与默认值见下图.

1.png

只有 post 支持 categories 和 tags.
categories 按顺序应用于文章,从而产生了分类和子分类的层级结构;tags 都定义在同一层级上,所以它们出现的顺序并不重要.

新建 page

终端输入命令:

1
$ hexo new page "PageA"

设置渲染公式

themes\next\docs\zh-CN\math.md文件中,有关于设置数学公式渲染的教程.

themes\next\_config.yml文件中,将math -> mathjax -> enable 设置为 true.

注意math -> per_page项:

  • 默认为true,必须在需要进行数学公式渲染的 post 的 front-matter 中加上:mathjax: true
  • 若设置为false,则对所有 post 进行渲染

欢迎关注我的其它发布渠道