I'd like to use polymer in a Python/Flask project. Flask uses the Jinja2 templating engine, which also uses the double curly braces {{}} as delimiters.
Escaping braces in Jinja2 is possible, but it results in very ugly and unreadable code I'd like to avoid.
Although it's also possible to change the delimiters in Jinja2, I'd rather change them in Polymer, because we already use some Jinja2 templates in the project.
So the question is, is it possible to change the delimiters in Polymer, and if so, how do we go about that?
Thanks