我有一个 jekyll 网站,其文件结构如下:
▾ _includes/
post-entry.html
▾ _posts/
2012-11-25-first-post.markdown
index.markdown
在我的 index.markdown 中,我想包含post-entry.html
这样的内容:
{% for post in site.posts %}
* {% include post-entry.html %}
{% endfor %}
但这在博客中显示为 HTML 代码片段。如何防止 HTML 受到保护?