Control Output (autoescape, filter, verbatim, etc.)
masterManipulate how content is rendered and escaped.
{% autoescape on|off %}/{% endautoescape %}: Controls automatic HTML escaping.{% filter filter_name %}/{% endfilter %}: Applies one or more filters to an entire block of content.{% spaceless %}/{% endspaceless %}: Removes whitespace between HTML tags.{% verbatim %}/{% endverbatim %}: Outputs content without processing any template syntax (useful for client-side frameworks like Vue or Angular).{% comment %}/{% endcomment %}: Multi-line comments that are not rendered.
{% verbatim %}
{{ this_will_not_be_processed }}
{% endverbatim %}