2022-06-22 13:00:42 +00:00
|
|
|
|
|
|
|
## [{{ versiondata.version }}] ({{versiondata.date}})
|
2021-04-19 11:32:52 +00:00
|
|
|
{% for section, _ in sections.items() %}
|
|
|
|
{% if section %}{{section}}{% endif -%}
|
|
|
|
{% if sections[section] %}
|
|
|
|
{% for category, val in definitions.items() if category in sections[section] %}
|
|
|
|
|
|
|
|
### {{ definitions[category]['name'] }}
|
|
|
|
{% if definitions[category]['showcontent'] %}
|
|
|
|
{% for text, values in sections[section][category].items() %}
|
2021-06-23 14:11:12 +00:00
|
|
|
- {{ text }} {{ values|reject("eq", "[#noissue]")|join(', ') }}
|
2021-04-19 11:32:52 +00:00
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|