标签: handlebars.js jekyll liquid
我正在使用Jekyll进行博客和渲染Handlebars模板很痛苦。我们必须这样逃避:
{% highlight html %} <div>{{"{{code"}}}}</div> {% endhighlight %}
这很难受。有更简单的方法吗?
答案 0 :(得分:24)
我找到了答案:
{% highlight html %} {% raw %} <div>{{code}}</div> {% endraw %} {% endhighlight %}