Lucas
Lucas

Reputation: 25

How to prevent jekyll code running within markdown code blocks

I was trying to add the following codes in a markdown code block on a Jekyll blog. However, the code within braces {% %} cannot be displayed.

{% for post in site.categories.[page.category] %}
{% if year != nyear %}
<p>{{ year }}</p>
{% endif %}

Anybody know how to prevent the codes within {% %} running? (I'm using markdown: kramdown in my _config.yml file).

Upvotes: 1

Views: 117

Answers (1)

David Jacquel
David Jacquel

Reputation: 52829

You can use the raw tag.

{% raw %}
{% for post in site.categories.[page.category] %}
{% if year != nyear %}
<p>{{ year }}</p>
{% endif %}
...
{% endraw %}

This will render the liquid code as is.

Upvotes: 2

Related Questions