mirror of
https://github.com/thegeeklab/ansible-doctor.git
synced 2024-11-01 02:40:40 +00:00
25 lines
634 B
Django/Jinja
25 lines
634 B
Django/Jinja
{% if not append | deep_get(role, "internal.append") %}
|
|
{% set meta = role.meta | default({}) %}
|
|
# {{ meta.name.value | safe_join(" ") }}
|
|
{% endif %}
|
|
{% if description | deep_get(meta, "description.value") %}
|
|
{% set description = [meta.description.value] if meta.description.value is string else meta.description.value %}
|
|
|
|
{{ description | map("replace", "\n\n", "\n") | safe_join("\n") }}
|
|
{% endif %}
|
|
|
|
{# TOC #}
|
|
{% include '_toc.j2' %}
|
|
|
|
{# Vars #}
|
|
{% include '_vars.j2' %}
|
|
|
|
{# Todo #}
|
|
{% include '_tag.j2' %}
|
|
|
|
{# Todo #}
|
|
{% include '_todo.j2' %}
|
|
|
|
{# Meta #}
|
|
{% include '_meta.j2' %}
|