我正在循环浏览两个产品——在帖子视图页面上,我拉入了第二个帖子(在示例中,一个相关的食谱),它在第一个产品页面上解析得很好——在第二个产品页面上就{{ 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 %}