I have some markdown in Morea which includes an example Jinja2 template. It looks like this:
{% highlight html linenos %}
<!doctype html>
<html>
<body>
<p> {{ greet }}, {{ place }} </p>
</body>
</html>
{% endhighlight %}
I would like to be able to display the double curly braces, but they get swallowed up, displaying nothing but the paragraph tags and the comma, like this:
<p> , </p>
I followed some advice to use the {% raw %} and {% endraw %} tags around that line, but nothing changes. Seems like a bug. Anyone have any tricks?