cofess / hexo-theme-pure

Hexo theme pure. It's a pure theme for Hexo.
http://blog.cofess.com
MIT License
1.09k stars 289 forks source link

取消显示侧边栏 toc 目录导航的序号 #154

Open LiuPiPiPi opened 2 years ago

LiuPiPiPi commented 2 years ago

官方文档: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 目录导航序号不显示。