ansible-doctor/ansibledoctor/templates/hugo-book/_tag.j2

14 lines
318 B
Django/Jinja

{% set tag = role.tag | default({}) %}
{% if tag %}
## Discovered Tags
{% for key, item in tag | dictsort %}
{{ key }}
{% if item.description is defined and item.description | save_join(" ") | striptags %}
: {{ item.description | save_join(" ") | striptags }}
{% else %}
:  
{% endif %}
{% endfor %}
{% endif %}