{% load pygments_highlights %}
{% if host.facts.items %}
{% for fact, value in host.facts.items %} {# Some facts are VERY LONG uninterrupted single lines (looking at you ansible_ssh_host_key_rsa_public) #} {% endfor %}
Fact Value
{{ fact }} {{ value | format_data | safe }}
{% else %}

No recorded host facts found.

Host facts are saved automatically when the setup module is used or when gather_facts: true is set.

{% endif %}