diff --git a/cli/helpers.py b/cli/helpers.py index cdd2986e..b7b93c00 100644 --- a/cli/helpers.py +++ b/cli/helpers.py @@ -44,7 +44,7 @@ def render_jinja( with open(template_path, "r") as t: template_text = t.read() - template = Template(template_text) + template = Template(template_text, autoescape=True) rendered = template.render(**data) with open(output_path, "w+") as out_t: