一、前言
Hexo博客NexT主题中是有目录的,只是在默认情况下没有开启,需要我们来手动开启。
二、修改样式文件custom.styl
文章目录样式文件custom.styl文件位于themes/next/source/css/_custom
打开后添加内容:
1.文章目录默认展开
//文章目录默认展开
.post-toc .nav .nav-child { display: block; }
2.文章目录字体大小调整
.post-toc ol {
font-size : 13px;
}
三、修改主题配置文件
主题配置文件位于themes/next/_config.yml
每行目录超长自动换行
toc:
enable: true
wrap: true