私は2つの製品をループしています-投稿ビューページで、最初の製品ページでうまく解析される2番目の投稿(例では関連レシピ)をプルします-2番目の製品ページで{{ 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 %}