Please consider adding native support for Jinja template syntax ({{ }}
, {% %}
, {# #}
), commonly used with Python backends (Flask, Django).
Currently, Pinegrow doesn’t recognize this syntax. When trying to work with Jinja, internal code (like attribute handling) can corrupt the template code. For example, I observed that {% if var=="0" %}
gets incorrectly rewritten as {% if var="0" %}
.
Native support, similar to the existing PHP/ASP handling, would prevent such errors and significantly improve the workflow for developers using Jinja.
Feel free to ask any questions or other examples.
Thanks in advance!