hexo-theme-yilia
hexo-theme-yilia copied to clipboard
文章摘要
gay主可以更新yilia版本 文章自动摘要吗?
我也想要这功能,但是这主题都好久没更新了
有 hexo-auto-excerpt
可以使用
-
npm install --save hexo-auto-excerpt
-
将
layout/_partial/article.ejs
,在div.article-entry
中的代码换成下面的<% if (index && (post.description || post.excerpt)){ %> <% if (post.description){ %> <%- post.description %> <% } else { %> <%- post.excerpt %> <% } %> <% } else { %> <% if (is_page()){ %> <%- partial('_partial/page') %> <% } %> <%- post.content %> <% } %>
-
_config.yml 添加下面代码
auto_excerpt: enable: true lines: 3