diff options
Diffstat (limited to '')
-rw-r--r-- | testing/templates/macro-import-str-cmp-macro.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/testing/templates/macro-import-str-cmp-macro.html b/testing/templates/macro-import-str-cmp-macro.html new file mode 100644 index 0000000..a951f93 --- /dev/null +++ b/testing/templates/macro-import-str-cmp-macro.html @@ -0,0 +1,13 @@ +{% macro strcmp0(s, other) -%} + {%- if s == "foo" -%} + foo + {%- else if s == other -%} + other + {%- else -%} + neither + {%- endif -%} +{% endmacro %} + +{% macro strcmp(s) %} + {%- call strcmp0(s, "bar") -%} +{% endmacro %} |