Skip to content

Latest commit

 

History

History
24 lines (20 loc) · 580 Bytes

changes_template.md

File metadata and controls

24 lines (20 loc) · 580 Bytes

{% for section, _ in sections.items() %} {% set underline = underlines[0] %} {% if section %} {{section}} {{ underline * section|length }} {% set underline = underlines[1] %} {% endif %}

{% if sections[section] %} {% for category, val in definitions.items() if category in sections[section]%} {{ definitions[category]['name'] }} {{ underline * definitions[category]['name']|length }}

{% for text, values in sections[section][category].items() %}

  • {{ text }} {{ values|join(',\n ') }} {% endfor %}

{% endfor %} {% else %} No significant changes.

{% endif %} {% endfor %}