{% if args is mapping %}
{% for key, value in args.items() %}
{{ key }} {% if value is mapping or value is string and value.startswith('{') or value is string and value.startswith('[') %} {% endif %}
{% if value is mapping or value is string and value.startswith('{') or value is string and value.startswith('[') %}
{{ value }}
{% else %}
{{ value }}
{% endif %}
{% endfor %}
{% else %}
{{ args }}
{% endif %}