mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-22 10:19:11 +02:00
Change **: to :** when bolding lists
This commit is contained in:
@@ -41,9 +41,9 @@ module.exports = class ForecastCommand extends Command {
|
||||
for (let i = 0; i < 7; i++) {
|
||||
const forecast = data.item.forecast[i];
|
||||
embed.addField(`❯ ${forecast.day} - ${forecast.date}`, stripIndents`
|
||||
**High**: ${forecast.high}°F
|
||||
**Low**: ${forecast.low}°F
|
||||
**Condition**: ${forecast.text}
|
||||
**High:** ${forecast.high}°F
|
||||
**Low:** ${forecast.low}°F
|
||||
**Condition:** ${forecast.text}
|
||||
`);
|
||||
}
|
||||
return msg.embed(embed);
|
||||
|
||||
Reference in New Issue
Block a user