| Source | Indicators | Tags | Matches (Rules) | Text Snippet |
|---|---|---|---|---|
| {{ (rec.type or 'page')|title }} | {{ rec.rules|length if rec.rules else 0 }} |
{% set ns = namespace(tags=[]) %}
{% if rec.rules %}
{% for r in rec.rules %}
{% if r.tags %}
{% for t in r.tags %}
{% if t not in ns.tags %}
{% set ns.tags = ns.tags + [t] %}
{% endif %}
{% endfor %}
{% endif %}
{% endfor %}
{% endif %}
{% if ns.tags and ns.tags|length > 0 %}
{% for t in ns.tags %}
{{ t }}
{% endfor %}
{% else %}
None
{% endif %}
|
{% if rec.rules and rec.rules|length > 0 %}
|
{% if rec.content_snippet %}
View snippet ({{ rec.content_snippet|length }} chars){{ rec.content_snippet }}
|
No text issues detected.
{% endif %}