{% set safe_author_url = safe_url(interaction.author_url) %} {% set safe_author_photo = safe_url(interaction.author_photo) %} {% set fqn = actor_fqn(interaction.source_actor_id or interaction.author_url) %} {% set safe_object_url = safe_url(interaction.object_id) %}
{% if safe_author_photo %} {% endif %} {% if interaction.author_name or interaction.author_url %} {% if safe_author_url %} {{ interaction.author_name or hostname(safe_author_url) }} {% else %} {{ interaction.author_name }} {% endif %} {% if fqn %} {{ fqn }} {% endif %} {% endif %}
{% if interaction.interaction_type.value == "reply" %} {% if interaction.content %}
{{ sanitize_html(interaction.content) }}
{% if interaction.content|length > 1000 %} {% endif %} {% endif %} {% elif interaction.interaction_type.value == "like" %} ⭐ liked this {% elif interaction.interaction_type.value == "boost" %} 🔁 boosted this {% elif interaction.interaction_type.value == "quote" %} 🗣️ quoted this {% if interaction.content %}
{{ sanitize_html(interaction.content) }}
{% if interaction.content|length > 1000 %} {% endif %} {% endif %} {% elif interaction.interaction_type.value == "mention" %} {% if interaction.content %}
{{ sanitize_html(interaction.content) }}
{% if interaction.content|length > 1000 %} {% endif %} {% else %} mentioned this {% endif %} {% else %} mentioned this {% endif %}