{% 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 %}