如何在 Jekyll 中显示液态代码 post
how to displayliquid code in Jeckyll post
你好,我正在尝试使用 jeckyll 制作一个 post,作为我的 post 的一部分,我想展示一些流动代码。 post 应该将 IF 语句显示为 post 文本的一部分(如下例)。
{% if customer and customer.tags contains 'Wholesale' %}
{% endif %}
我已经尝试 post 这个作为
{% highlight liquid %}
{% if customer and customer.tags contains 'Wholesale' %}
{% endif %}
{% endhighlight %}
还有
{% highlight markdown %}
{% if customer and customer.tags contains 'Wholesale' %}
{% endif %}
{% endhighlight %}
但我尝试的任何操作似乎仍在执行流动代码。
有没有办法显示 IF 语句 my post?
尝试像这样在 {% raw %} {% endraw %} 中包装您的液体代码:
{% highlight liquid %}
{% raw %}
{% if customer and customer.tags contains 'Wholesale' %}
{% endif %}
{% endraw %}
{% endhighlight %}
原始标签将禁用任何液体处理并根据需要输出您的代码。
你好,我正在尝试使用 jeckyll 制作一个 post,作为我的 post 的一部分,我想展示一些流动代码。 post 应该将 IF 语句显示为 post 文本的一部分(如下例)。
{% if customer and customer.tags contains 'Wholesale' %}
{% endif %}
我已经尝试 post 这个作为
{% highlight liquid %}
{% if customer and customer.tags contains 'Wholesale' %}
{% endif %}
{% endhighlight %}
还有
{% highlight markdown %}
{% if customer and customer.tags contains 'Wholesale' %}
{% endif %}
{% endhighlight %}
但我尝试的任何操作似乎仍在执行流动代码。 有没有办法显示 IF 语句 my post?
尝试像这样在 {% raw %} {% endraw %} 中包装您的液体代码:
{% highlight liquid %}
{% raw %}
{% if customer and customer.tags contains 'Wholesale' %}
{% endif %}
{% endraw %}
{% endhighlight %}
原始标签将禁用任何液体处理并根据需要输出您的代码。