mirror of
https://github.com/thegeeklab/ansible-doctor.git
synced 2024-11-01 02:40:40 +00:00
33 lines
785 B
Django/Jinja
33 lines
785 B
Django/Jinja
{% if not append | deep_get(role, "internal.append") %}
|
|
{% set meta = role.meta | default({}) %}
|
|
---
|
|
title: {{ meta.name.value | safe_join(" ") }}
|
|
type: docs
|
|
{% if summary | deep_get(meta, "summary.value") %}
|
|
summary: {{ meta.summary.value | safe_join(" ") }}
|
|
{% endif %}
|
|
---
|
|
{% 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 %}
|
|
|
|
<!--more-->
|
|
|
|
{# TOC #}
|
|
{% include '_toc.j2' %}
|
|
|
|
{# Vars #}
|
|
{% include '_vars.j2' %}
|
|
|
|
{# Todo #}
|
|
{% include '_tag.j2' %}
|
|
|
|
{# Todo #}
|
|
{% include '_todo.j2' %}
|
|
|
|
{# Meta #}
|
|
{% include '_meta.j2' %}
|