gpt4 book ai didi

jekyll - 按 Liquid 和 Jekyll 中修改后的变量排序

转载 作者:行者123 更新时间:2023-12-05 04:13:53 26 4
gpt4 key购买 nike

我在 Jekyll 中有一个集合,我想对其进行排序。按标题排序当然很容易。

<ul>
{% for note in site.note | sort: "title" %}
<li>{{note.path | git_mod }}: {{ note. title }}</li>
{% endfor %}
</ul>

我想按日期排序。但是由于集合没有日期,我有一个自定义的 Liquid 过滤器,它采用项目的路径,并在 Git 中获取其最后修改时间。您可以在上面的代码中看到,我将路径传递给 git_mod。我可以验证这是否有效,因为当我打印出列表时,我得到了正确的上次修改时间,而且它是一个完整的日期。 (实际上,我还将它传递给 date_as_string。)

但我无法按该值排序,因为 Liquid 不知道它,因为它是 site.note 集合中每个项目中已有的值。我如何按该值排序?我在想这样的事情,但它不起作用:

<ul>
{% for note in site.note | sort: path | date_mod %}
<li>{{note.path | git_mod }}: {{ note. title }}</li>
{% endfor %}
</ul>

我也尝试过类似的变体:{% for note in site.note |排序:(note.path | git_mod) %}

这些都不会引发错误,但它们也都不起作用。

最佳答案

在这种情况下,您可以使用 Jekyll hooks .

你可以创建一个 _plugins/git_mod.rb

Jekyll::Hooks.register :documents, :pre_render do |document, payload|

# as posts are also a collection only search Note collection
isNote = document.collection.label == 'note'

# compute anything here
git_mod = ...

# inject your value in dacument's data
document.data['git_mod'] = git_mod

end

然后你就可以按 git_mod 键排序

{% assign sortedNotes = site.note | sort: 'git_mod' %}
{% for note in sortedNotes %}
....

请注意,您不能在 for 循环中排序。您首先需要在赋值排序,然后是循环

关于jekyll - 按 Liquid 和 Jekyll 中修改后的变量排序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36263812/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com