当我的不和谐机器人引用 reddit 时,如何不显示这个无用的小部件:是否可以让这个小部件不显示?这是我的代码: @client.command()async def reddit(ctx, arg, arg2 = None): if not arg2: await ctx.send('https://www.reddit.com/search/?q=' + str(arg)) await ctx.send('`^ Searching for` ' + str(arg) + '`... ^`') if arg2: await ctx.send('https://www.reddit.com/' + str(arg2) + '/search?q=' + str(arg) + '&restrict_sr=1')
1 回答
千万里不及你
TA贡献1784条经验 获得超9个赞
将链接包裹起来< >
await ctx.send('<https://www.reddit.com/search/?q=' + str(arg) + ">")
这是一个 Discord 功能,不仅仅是特定于编写机器人。
添加回答
举报
0/150
提交
取消