aboutsummaryrefslogblamecommitdiffstats
path: root/testing/templates/nested-macro-args.html
blob: 03826f8f479de01e5c0c5b5a11a39392a998f028 (plain) (tree)
1
2
3
4
5
6
7
8
9








                                   
{%- macro outer(first) -%}
{%- call inner(first, "second") -%}
{%- endmacro -%}

{%- macro inner(first, second) -%}
{{ first }} {{ second }}
{%- endmacro -%}

{%- call outer("first") -%}