I am using Jekyll for our blog and rendering Handlebars templates is a pain. We have to escape like so:
{% highlight html %} {{\"{{code\"}}}} 相关标签:
I found the answer:
{% highlight html %} {% raw %} <div>{{code}}</div> {% endraw %} {% endhighlight %}