文章摘要
目前主题可使用两种方式在首页显示文章摘要而不是全文。
方法一: <!-- more -->
title: Hello World
date: 2015-12-03 00:00:00
---
<Excerpt in index | 首页摘要>
+<!-- more -->
<The rest of contents | 余下全文>
<!-- more -->
之前最好不要有空格等字符;
方法二: description
in Front-matter
title: Hello World
date: 2015-12-03 00:00:00
+description: "Welcome to Hexo! This is your very first post."
---
<Contents>
通过 description
添加的摘要只能为纯文本;
description
中的内容加引号,可以避免一些程序错误,例如当内容里包含英文冒号时。