diff options
Diffstat (limited to 'testing/templates/nested-macro-args.html')
-rw-r--r-- | testing/templates/nested-macro-args.html | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/testing/templates/nested-macro-args.html b/testing/templates/nested-macro-args.html new file mode 100644 index 0000000..03826f8 --- /dev/null +++ b/testing/templates/nested-macro-args.html @@ -0,0 +1,9 @@ +{%- macro outer(first) -%} +{%- call inner(first, "second") -%} +{%- endmacro -%} + +{%- macro inner(first, second) -%} +{{ first }} {{ second }} +{%- endmacro -%} + +{%- call outer("first") -%} |