2.7 添加文章目录
1. 添加toc.ejs文件
toc.ejs文件<% if (post.toc != false) { %>
<div id="toc">
<%- toc(post.content, {list_number: false}) %>
</div>
<% } %>2. 添加到页面中
...
<div class="article-entry" itemprop="articleBody">
<% if (post.excerpt && index){ %>
<%- post.excerpt %>
<% if (theme.excerpt_link){ %>
<p class="article-more-link">
<a href="<%- url_for(post.path) %>#more"><%= theme.excerpt_link %></a>
</p>
<% } %>
<% } else { %>
<%- partial('toc') %>
<%- post.content %>
<% } %>
</div>
...
3. 修改目录样式


Last updated