You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
267 B

{% for parameter_name, value in document_dictionary.items() -%}
{% if value[:-1] -%}
{{ "" if loop.first else "\n" -}}
{% endif -%}
{% for comment in value[:-1] -%}
{{ comment }}
{% endfor -%}
{{ parameter_name[0] + parameter_name[1] }}={{ value[-1] }}
{% endfor -%}