We can also use {% raw %}
and {% endraw %}
to ignore some files containing Jinja2 syntax. for example:
Assume we have a file called test.py that has some Jinja2 syntax, we can do this:
{% raw %}
# here is our test.py file
a = 2
{{ some syntax that can conflict with cookiecutter }}
b = 5
{% endraw %}