Description
Unibeautify formats the {% with key=value %} tag in Django templates by adding spaces around the = operator, like this:
{% with key = value %}
However, Django templates require strict syntax without spaces around the = operator, like this:
{% with key=value %}
This formatting change causes a syntax error in Django templates.