-
Notifications
You must be signed in to change notification settings - Fork 289
Open
Description
官方文档:Hexo辅助函数#toc
参考文章:https://www.cnblogs.com/peihao/p/5269131.html
文件位置:{本地路径}\Hexo\themes\pure\layout\_partial\sidebar-toc.ejs
<nav id="toc" class="article-toc">
<h3 class="toc-title"><%= __('article.catalogue') %></h3>
<%- toc(post.content) %>
</nav>
将上述代码修改为:
<nav id="toc" class="article-toc">
<h3 class="toc-title"><%= __('article.catalogue') %></h3>
<%- toc(post.content, {
list_number: false
}) %>
</nav>
即可实现侧边栏 toc 目录导航序号不显示。
Metadata
Metadata
Assignees
Labels
No labels