6 lines
146 B
TOML
6 lines
146 B
TOML
{% for section in config.items() -%}
|
|
[{{ section }}]
|
|
{% for key, val in section.iteritems() -%}
|
|
{{ key }} = {{ val }}
|
|
{% endfor -%}
|
|
{% endfor -%}
|