So if I were to do something like {% block content %}
{{variable}}
{% endblock %}
in my HTML, and variable is equal to "Test <br /> test2" how come the
prints out and does not make a new line? is there a way to fix this?
So if I were to do something like {% block content %} {{variable}} {%
Share
Jinja2 automatically escapes special characters for you. Probably simplest way is to use
safefilter: