{%- for line in diff_lines -%}
{%- if line.startswith('+++') or line.startswith('---') -%}
{{ line }}
{% elif line.startswith('@@') %}{{ line }}
{%- elif line.startswith('+') -%}
{{ line }}
{%- elif line.startswith('-') -%}
{{ line }}
{%- else -%}
{{ line }}
{%- endif -%}
{% endfor -%}