Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to make bold italics of a discord bot message?

Well, I need to change the italics of the message to bold that the bot sends, it sounds simple. but I don't know how to do it.

[email protected]

execute(message) {
  const serverQueue = message.client.queue.get(message.guild.id);
  return message.channel.send('Check this site for a list of commands.');
}
};
like image 251
Ryaxn Avatar asked Jan 17 '26 08:01

Ryaxn


1 Answers

Use single * wrapped around the text. This is the usual convention of most italic text so keep track of it

message.channel.send('*Check this site for a list of commands.*');

Here's a quick guide by discord I found on their markdown:

https://support.discord.com/hc/en-us/articles/210298617-Markdown-Text-101-Chat-Formatting-Bold-Italic-Underline-