问题
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).
回答1:
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.
来源:https://stackoverflow.com/questions/37170459/how-to-prevent-jekyll-code-running-within-markdown-code-blocks