Comment inclure un fichier HTML à l'intérieur d'un fichier markdown dans jekyll?

J'ai un jekyll site avec filestructure comme suit:

▾ _includes/
    post-entry.html
▾ _posts/
    2012-11-25-first-post.markdown
index.markdown

Dans mon index.markdown, je veux inclure un post-entry.html comme ceci:

{% for post in site.posts %}
* {% include post-entry.html %}
{% endfor %}

Mais il apparaît comme un extrait de code HTML dans le blog. Comment puis-je prévenir le code HTML de
protégé?

OriginalL'auteur SiddharthaRT | 2012-11-25