如何在Jeckyll帖子中显示液体代码

时间:2019-01-04 22:48:05

标签: jekyll blogs liquid

您好,我正在尝试使用jeckyll发帖,作为我发帖的一部分,我想展示一些简洁的代码。该帖子应在帖子文本中显示IF语句(下面的示例)。

{% if customer and customer.tags contains 'Wholesale'  %}
{% endif %}

我尝试将其发布为

{% highlight liquid %}
   {% if customer and customer.tags contains 'Wholesale'  %}
   {% endif %}
{% endhighlight %}

还有

{% highlight markdown %}
    {% if customer and customer.tags contains 'Wholesale'  %}
    {% endif %}
{% endhighlight %}

但是我尝试执行的任何操作似乎仍在执行液态代码。 有没有办法显示我的帖子中的IF语句?

1 个答案:

答案 0 :(得分:1)

尝试将您的临时代码包装在{%raw%} {%endraw%}中,

{% highlight liquid %}
    {% raw %}
    {% if customer and customer.tags contains 'Wholesale'  %}
    {% endif %}
    {% endraw %}
{% endhighlight %}

原始标签将禁用任何液体处理并根据需要输出代码。