1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Octopress で Liquid テンプレートを記事中に書く

Posted at

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 %}
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?