14 lines
425 B
Lua
14 lines
425 B
Lua
{% macro dict_to_lua(dict) -%}
|
|
{
|
|
{%- for key, value in dict.items() -%}
|
|
["{{ key }}"] = {% if value is mapping %}{{ dict_to_lua(value) }}{% else %}{{ value | safe }}{% endif %}{% if not loop.last %},{% endif %}
|
|
{% endfor -%}
|
|
}
|
|
{%- endmacro %}
|
|
{% macro dict_to_recipe(dict) -%}
|
|
{
|
|
{%- for key, value in dict.items() -%}
|
|
{"{{ key }}", {{ value | safe }}}{% if not loop.last %},{% endif %}
|
|
{% endfor -%}
|
|
}
|
|
{%- endmacro %} |