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 %} {{code}} {% endraw %} {% endhighlight %}