Last active
March 2, 2016 16:11
-
-
Save blarghmatey/51675ebd04e2b4947855 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{%- macro render_yaml(config_dict, offset=2) -%} | |
{%- for key, value in config_dict.items() -%} | |
{%- if value is mapping -%} | |
{{ key }}: | |
{{ render_yaml(value)|indent(offset) }} | |
{%- elif value is list -%} | |
{{ key }}: | |
{% for v in value -%} | |
- {{ v }} | |
{% endfor -%} | |
{%- else -%} | |
{{ key|indent(offset) }}: {{ value }} | |
{% endif -%} | |
{%- endfor -%} | |
{%- endmacro -%} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment