Is it possible to change the "delimiter tags" for expression substitution in the Python Mako templating library? If so, how?
e.g.: Instead of <div>${foobar}</div>
, I would like to use the syntax <div>{{foobar}}</div>
.
I can't seem to find any references in the Mako docs.