在Octopress RSS中仅显示标题

时间:2015-06-09 19:50:39

标签: rss jekyll octopress

我有一个基于Octopress的博客。它生成一个-wholename - Feed,但该Feed包含包含图片的整个页面(帖子)。

我怎样才能“收缩”它,所以它只包含页面标题(帖子)?

Octopress :2.0
Jekyll :2.0.3

1 个答案:

答案 0 :(得分:1)

在feed.xml中,您可以使用post.content

,而不是使用post.excerpt

两种解决方案:

1 - 使用octopress设置

在帖子中添加<!-- more -->,以标记post.excerptpost.content之间的限制。 content仍包含两者。

2 - 使用Jekyll默认

从配置文件中删除此行excerpt_separator: <!--more-->。由于默认的摘录分隔符为"\n\n"(两个新行),因此将自动创建摘录。

替代解决方案

使用truncate过滤器{{ post.content | truncate: 200 | expand_urls: site.url | cdata_escape }}

您会找到more information about excerpt in Jekyll documentation