目录:#


Hexo 的强大之处就是有很多plugin可以扩展功能,Hexo支持目录也很简单。

安装#

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

1
npm install hexo-toc --save

配置#

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

1
2
3
4
5
6
7
8
9
toc:
maxdepth: 3
class: toc
slugify: transliteration
decodeEntities: false
anchor:
position: after
symbol: '#'
style: header-anchor

使用#

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

1
<!-- toc -->

效果#

请看本文。