在 Jekyll 中,如何判断 post 是否使用了 excerpt_separator
In Jekyll, How can I judge whether a post used excerpt_separator or not
在我的索引页中,我想显示这个:
如果post比较短,我不会设置excerpt_separator让它显示完整的内容,它会和单个post页面一样显示。
如果post很长,我会在文章中设置excerpt_separator,我想在post.
中显示摘录
在索引页的posts循环中,整篇文章和摘录的展示模板是不同的,如省略号和'read more' link。所以我想知道当前是否使用摘录分隔符post.How我可以判断这个吗,谢谢
您可以像这样测试您的 post.content
:
{% if post.content contains site.excerpt_separator %}
在我的索引页中,我想显示这个:
如果post比较短,我不会设置excerpt_separator让它显示完整的内容,它会和单个post页面一样显示。 如果post很长,我会在文章中设置excerpt_separator,我想在post.
中显示摘录在索引页的posts循环中,整篇文章和摘录的展示模板是不同的,如省略号和'read more' link。所以我想知道当前是否使用摘录分隔符post.How我可以判断这个吗,谢谢
您可以像这样测试您的 post.content
:
{% if post.content contains site.excerpt_separator %}