Octopress で Liquid テンプレートを記事中に書く
Octopress で作ったブログの中で Liquid テンプレートを紹介したいと思った時に、以下のようにそのまま書くと {{ }}
や {% %}
が評価されてしまい、エラーになったりと予想と反する挙動になってしまいます。
{% codeblock lang:html %}
<section>
<h1>Categories</h1>
<ul>
{% for category in site.categories %}
<li>{{ category | category_link }}</li>
{% endfor %}
</ul>
</section>
{% endcodeblock %}
こういう時は {% raw %}
と {% endraw %}
で囲むと、中のタグが評価されなくなります。
{% codeblock lang:html %}
{% raw %}
<section>
<h1>Categories</h1>
<ul>
{% for category in site.categories %}
<li>{{ category | category_link }}</li>
{% endfor %}
</ul>
</section>
{% endraw %}
{% endcodeblock %}
Author And Source
この問題について(Octopress で Liquid テンプレートを記事中に書く), 我々は、より多くの情報をここで見つけました https://qiita.com/shuhei/items/468d65271a3b90b50d42著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .