gpt4 book ai didi

Jekyll 循环在第二次迭代时中断

转载 作者:行者123 更新时间:2023-12-01 07:11:08 25 4
gpt4 key购买 nike

我正在遍历两个产品 - 在帖 subview 页面上,我拉入了一个辅助帖子(在示例中,一个相关的配方),它在第一个产品页面上解析得很好 - 在第二个产品页面上只是 {{ post.content }}不会解析。我可以用 {{ post.content | markdownify }} 破解它- 但我想知道它为什么会坏。这是相关的代码:

{% for post in site.categories.recipe %}
{% if post.products contains page.title and post.featured %}
<div class="row">
<div class="four columns">
<h4>{{ post.title }}</h4>
<ul>
<li>Serves {{ post.serves }}</li>
<li>Prep: {{ post.time }}</li>
<li><a href=" ">Share</a></li>
</ul>

{{ post.content }}

...

<!-- All tags are closed, the rest just isn't relevant -->

{% endif %}
{% endfor %}

最佳答案

请通过柜台找到我的解决方案

<pre>

{% assign counter=0 %}

{% for post in site.posts%}

{% if post.category == 'blog' and counter < 2 %}
{% assign counter=counter | plus:1 %}

{{post.content}}

{% endif %}

{% endfor %}

</pre>

关于Jekyll 循环在第二次迭代时中断,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12911425/

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