Removing the excess borders.
This commit is contained in:
parent
12a9447c00
commit
77ed019bfe
@ -14,12 +14,15 @@
|
||||
{%- macro config_entries(data, indents) -%}
|
||||
{%- if data is string or data is number -%}
|
||||
{{- " " }}{{ data }}
|
||||
{%- elif data is mapping -%}
|
||||
{%- for entry in data|dictsort -%}
|
||||
{{ entry[0]|indent(indents, True) }} {
|
||||
{%- else -%}
|
||||
{{- " {" -}}
|
||||
{%- if data is mapping -%}
|
||||
{%- for entry in data|dictsort -%}
|
||||
{{ entry[0]|indent(indents, True) }}
|
||||
{{- config_entries(entry[1], indents + 2) -}}
|
||||
{%- endfor -%}
|
||||
{%- endif -%}
|
||||
{{ '}'|indent(indents, True) }}{{ '\n' }}
|
||||
{%- endfor -%}
|
||||
{%- endif -%}
|
||||
{%- endmacro -%}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user