Disabling Jinja2 autoescape in Environment Configuration
Code creates Jinja2 environment with autoescape=False: Environment(autoescape=False). Default templates don't escape HTML special characters. User input rendered as raw HTML enables XSS. Common in custom template engines or when migrating from non-auto-escaping frameworks. All templates inherit disabled autoescape.