15 lines
248 B
Plaintext
15 lines
248 B
Plaintext
|
# -*- coding: utf-8 -*-
|
||
|
# vim: ft=jinja
|
||
|
#
|
||
|
# Collection of common macros
|
||
|
|
||
|
{%- macro format_kwargs(kwarg) -%}
|
||
|
|
||
|
{%- filter indent(4) %}
|
||
|
{%- for k, v in kwarg|dictsort() %}
|
||
|
- {{ k }}: {{ v }}
|
||
|
{%- endfor %}
|
||
|
{%- endfilter %}
|
||
|
|
||
|
{%- endmacro %}
|