Hexo使用攻略-添加目录

1. 安装

首先,安装一个hexo-toc的插件,代码如下:

npm install hexo-toc --save

2. 配置

配置一下站点配置文件_config.yml:

toc:
  maxdepth: 3
  class: toc
  slugify: transliteration
  decodeEntities: false
  anchor:
    position: after
    symbol: '#'
    style: header-anchor

3. 使用

在Markdown文章中加入TOC的占位符:

<!-- toc -->

4. 效果

5. 一般使用

toc:
  maxdepth: 3
  class: false
  slugify: transliteration
  decodeEntities: false