{% macro get_or_default(val, def) %} {% match val %} {% when Some with (v) %} {{v}} {% else %} {{def}} {% endmatch %} {% endmacro %}