ansible-doctor/ansibledoctor/templates/readme
2022-05-17 14:19:31 +02:00
..
_meta.j2 fix: get role name from dependencies in case of a dictionary (#300) 2022-05-17 14:19:31 +02:00
_tag.j2 feat: auto-discover tags and add annotation identifier (#250) 2022-02-26 13:35:34 +01:00
_toc.j2 feat: auto-discover tags and add annotation identifier (#250) 2022-02-26 13:35:34 +01:00
_todo.j2 feat: implement todo identifiers (#246) 2022-02-21 21:38:47 +01:00
_vars.j2 fix: allow line-breaks in multiline annotations (#243) 2022-02-19 14:58:35 +01:00
README.md.j2 feat: auto-discover tags and add annotation identifier (#250) 2022-02-26 13:35:34 +01:00

{% if not append | deep_get(role, "internal.append") %}
{% set meta = role.meta | default({}) %}
# {{ meta.name.value | save_join(" ") }}
{% endif %}
{% if description | deep_get(meta, "description.value") %}

{{ meta.description.value | save_join(" ") }}
{% endif %}

{#      TOC      #}
{% include '_toc.j2' %}

{#      Vars      #}
{% include '_vars.j2' %}

{#      Todo      #}
{% include '_tag.j2' %}

{#      Todo      #}
{% include '_todo.j2' %}

{#      Meta      #}
{% include '_meta.j2' %}