我有一个基于Octopress的博客。它生成一个-wholename
- Feed,但该Feed包含包含图片的整个页面(帖子)。
我怎样才能“收缩”它,所以它只包含页面标题(帖子)?
Octopress :2.0
Jekyll :2.0.3
答案 0 :(得分:1)
在feed.xml中,您可以使用post.content
。
post.excerpt
两种解决方案:
在帖子中添加<!-- more -->
,以标记post.excerpt
和post.content
之间的限制。 content
仍包含两者。
从配置文件中删除此行excerpt_separator: <!--more-->
。由于默认的摘录分隔符为"\n\n"
(两个新行),因此将自动创建摘录。
使用truncate过滤器{{ post.content | truncate: 200 | expand_urls: site.url | cdata_escape }}