We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Imagine the following template setup: main.jinja.yml:
{% include 'part1.jinja.yml' %} {% extends "shared.jinja.yml" %}
shared.jinja.yml:
--- {% include 'part2.jinja.yml' %}
part1.jinja.yml:
part: PART1
part2.jinja.yml:
part: PART2
Evaluating main.jinja.yml will result in an output file that looks like this:
--- part: PART2
Notice that PART1, which is included by the main template, is missing.
Jinjava version 2.7.1.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Imagine the following template setup:
main.jinja.yml:
shared.jinja.yml:
part1.jinja.yml:
part2.jinja.yml:
Evaluating main.jinja.yml will result in an output file that looks like this:
Notice that PART1, which is included by the main template, is missing.
Jinjava version 2.7.1.
The text was updated successfully, but these errors were encountered: