{% extends "base.html" %} {% block title %}Message Template: {{ feed_title if feed_title else feed.url }} | discord-rss-bot{% endblock title %} {% block description %}Customize the plain text Discord message template for {{ feed_title if feed_title else feed.url }}.{% endblock description %} {% block content %}
  • You can modify the message that is sent to Discord.
  • You can use \n to create a new line.
  • You can remove the embed from links by adding < and > around the link. (For example <{% raw %}{{ entry_link }}{% endraw %}>)
{{ render_tag_reference_html(feed=feed, entry=entry, feed_title=feed_title, first_image=first_image, extension_variables=extension_variables, extension_values=extension_values) }}
  • Optional: override the Discord webhook username and avatar for messages from this feed.
  • Leave blank to use the webhook's default name and avatar.
  • Invalid values (empty, disallowed characters, or bad avatar URLs) are ignored when sending.
  • Username rules: 1–80 characters; cannot contain @, #, :, or `; cannot contain clyde or discord.
  • Avatar must be a full http:// or https:// image URL.
{% endblock content %}