这是桌面应用程序上的样子:https://imgur.com/a/iDTrHsy
这是在移动设备(Android)上的外观:https://imgur.com/a/RV3tvZJ
这是我的代码:
@client.command()
async def draw(ctx):
group_of_items = [
'[***Seiyaryu***](link)',
'[Crawling Dragon #2](link)']
num_to_select = 2
list_of_random_items = random.sample(group_of_items, num_to_select)
first_random_item = list_of_random_items[0]
second_random_item = list_of_random_items[1]
embed = discord.Embed(
description = f'You drew: {first_random_item}\nand\n{second_random_item}',
colour = discord.Colour.from_rgb(47,128,49)
)
embed.set_footer(text="Bot of Greed", icon_url="link")
await ctx.send(embed=embed)
有什么方法可以解决此问题,以便它还能在移动设备上显示文本格式?
答案 0 :(得分:2)
您无能为力,而且多年来一直是一个问题。
我对Discord修复它的希望不大。