Include Template Variables

Include Template Variables

You may want to protect a template variable from rendering during the initialization process (for example, having a Jinja template that is part of the Angreal template but shouldn’t be templated at initialization).

Within a File

{% raw %}
  Hello  {{ template.variable }}.
{% endraw %}

will render as:

Hello {{ template.variable }}.

Within a File/Directory Name

├── README.md
├── VERSION
├── angreal.json
├── setup.py
└── {% raw %}{{ angreal.name }}{% endraw %}

will render as

├── README.md
├── VERSION
├── angreal.json
├── setup.py
└── {{ angreal.name }}