I’m trying to work out how to split a RichEmbed into two separate messages if the description is larger than 2048 characters.
let embed = new RichEmbed()
.setColor(cyan)
.setAuthor(`Urban Dictionary | ${word}`, image)
.setThumbnail(image)
.setDescription(stripIndents`**Definition:**
${definition || "No definition"}
**Example:**
${example || "No example"}
**Upvotes:** ${thumbs_up || 0}
**Downvotes:** ${thumbs_down || 0}
**Link:** [Link to ${word}](${permalink || "https://www.urbandictionary.com/"})`)
.setFooter(`Requested by: ${message.author.tag} || Author: ${author || "Unknown"}`, message.author.avatarURL)
.setTimestamp()
message.channel.send(embed)
Thanks in advance!