如何在嵌入 discord.py 中使用 markdown 语法发送图像

Posted

技术标签:

【中文标题】如何在嵌入 discord.py 中使用 markdown 语法发送图像【英文标题】:How can i send an image using markdown syntax in an embed discord.py 【发布时间】:2021-01-25 21:56:03 【问题描述】:

我有这个代码来显示我的项目状态:

def status(branch):
    embed=discord.Embed(title="Wng status", description=f"**On branch : branch :**\n\n- Windows : ![WinStatus](https://img.shields.io/github/workflow/status/Wmanage/wng/Rust/branch)\n- *nix : ![WinStatus](https://img.shields.io/github/workflow/status/Wmanage/wng/RustUnix/branch)", color=0xffaa00)
    embed.set_footer(text="w/status • Status of wng project")
    return embed

但是当我发送它时它不显示图像: picture

我如何发送降价图片?

【问题讨论】:

【参考方案1】:

只有 4 个可能的位置可以将图像添加到您的嵌入中。

您可以考虑将照片添加为您的公会中的表情符号,并按如下方式使用它们

branch_emoji=discord.utils.get(ctx.guild.emojis, name="NAME_HERE")

【讨论】:

问题在于它是动态照片,适用于 ghub 动作:/ 那么你可能只是很多嵌入,每个都有一个分支。

以上是关于如何在嵌入 discord.py 中使用 markdown 语法发送图像的主要内容,如果未能解决你的问题,请参考以下文章

如何将 discord.py 帮助命令放入嵌入中?

如何在 discord.py 中复制嵌入?

我如何将成员的图像和昵称放在嵌入中? (w/discord.py)

如何使用 discord.py 使用我的不和谐机器人编辑嵌入颜色

Discord.py 创建没有字幕的嵌入

(discord.py) 有啥方法可以自动保存嵌入图像?