askama/testing/templates/nested-macro-callexpr.html
2025-07-21 16:55:31 +02:00

12 lines
168 B
HTML

{%- macro child0() -%}
foo
{%- endmacro -%}
{%- macro child1() -%}
{{ child0() }}
{%- endmacro -%}
{%- macro parent() -%}
{{ child1() }}
{%- endmacro -%}