{% if message.reply_to %}
↩️ Réponse à {{ message.reply_to.author }} : {{ message.reply_to.content }}
{% endif %}
{{ message.content | safe }}
{% if message.attachments %}
{% endif %}
{% if message.embeds %}
{% for embed in message.embeds %}
{% if embed.author %}
{% if embed.author.icon_url %}

{% endif %}
{% if embed.author.url %}
{{ embed.author.name }}
{% else %}
{{ embed.author.name }}
{% endif %}
{% endif %}
{% if embed.thumbnail_url %}
{% endif %}
{% if embed.title %}
{% if embed.url %}
{{ embed.title }}
{% else %}
{{ embed.title }}
{% endif %}
{% endif %}
{% if embed.description %}
{{ embed.description | safe }}
{% endif %}
{% if embed.fields %}
{% for field in embed.fields %}
{{ field.name | safe }}
{{ field.value | safe }}
{% endfor %}
{% endif %}
{% if embed.image_url %}
{% endif %}
{% if embed.footer or embed.timestamp %}
{% endif %}
{% endfor %}
{% endif %}
{% if message.components %}
{% for row in message.components %}
{% endfor %}
{% endif %}
{% if message.reactions %}
{% for reaction in message.reactions %}
{% if reaction.emoji.startswith('
{% endfor %}
{% endif %}