{% for suite in suites %}

{{ suite.name }}

{% if suite.doc %}

📝 Docs: {{ suite.doc }}

{% endif %} {% if suite.source %}

🔗 Source: {{ suite.source }}

{% endif %}

📊 Number of Tests: {{ suite.num_tests }}

{% for test in suite.tests %}

{% if test.doc %}

📝 Docs:
{{ test.doc }}

{% endif %} {% if test.source %}

🔗 Source: {{ test.source }}

{% endif %} {% if test.tags %}

🏷 Tags: {{ test.tags | join(', ') }}

{% endif %} {% if test.keywords %}

🔑 Keywords:
- {{ test.keywords | join('
- ') }}

{% endif %}
{% endfor %}
{% endfor %}

Generated at: {{ generated_at }}
robotframework-testdoc by Marvin Klerx