4

假设我想要一个内容如下的页面:

<h1>{{page.comment_count}} Comment(s)</h1>
{% for c in page.comment_list %}
<div>
    <strong>{{c.title}}</strong><br/>
    {{c.content}}
</div>
{% endfor %}

comment_count页面上没有命名或comment_list默认的变量;相反,我希望将这些变量从 Jekyll 插件添加到页面中。我可以在不干扰 Jekyll 现有代码的情况下填充这些字段的安全地方在哪里?

或者有没有更好的方法来获得这样的评论列表?

4

1 回答 1

3

不幸的是,目前不可能在不影响 Jekyll 内部东西的情况下添加这些属性。我们正在为#after_initialize等添加钩子,但还没有。

我最好的建议是添加这些属性,就像我在博客上使用Octopress 日期插件所做的那样。它使用 Jekyll v1.2.0 的Jekyll::Post#to_liquid方法来添加这些属性,这些属性是通过以下方式收集send(attr)Post

class Jekyll::Post

  def comment_count
    comment_list.size
  end

  def comment_list
    YAML.safe_load_file("_comments/#{self.id}.yml")
  end

  # Convert this post into a Hash for use in Liquid templates.
  #
  # Returns <Hash>
  def to_liquid(attrs = ATTRIBUTES_FOR_LIQUID)
    super(attrs + %w[
      comment_count
      comment_list
    ])
  end
end

super(attrs + %w[ ... ])将确保仍然包含所有旧属性,然后收集与String数组中的条目对应的方法的返回值。

这是迄今为止扩展帖子和页面的最佳方式。

于 2013-10-20T18:24:30.330 回答