如何为 github.io 网站获取自定义不和谐嵌入?

Posted

技术标签:

【中文标题】如何为 github.io 网站获取自定义不和谐嵌入?【英文标题】:How to get custom discord embeds for github.io website? 【发布时间】:2021-05-11 01:01:03 【问题描述】:

Source code

我只是想改变一些东西,比如添加图片,改变蓝条的颜色,添加一些正文等。

【问题讨论】:

【参考方案1】:

在您的index.html 文件<head> 标签中使用这些元标签。您已使用og:title 标签,请使用其他两个标签。

<meta property="og:title" content="Write your desired title">
<meta property="og:description" content="Write the body text here">
<meta property="og:image" content="https://hypixelfarms.github.io/images/1.jpeg">

这些用于社交分享,它使用 og 属性,与搜索引擎不同。有关更多信息,请访问 this page of Css-Tricks。

【讨论】:

很高兴,您使用了它。【参考方案2】:

这里有一些 Python 代码可以满足您的要求。对于color,将变量设置为您想要的任何颜色的十六进制代码,并将# 替换为0x。我提供了一个将其设置为绿色的示例。您可以从here 获取颜色代码。

@bot.command()
async def test(ctx):
    embed = discord.Embed(
        title="Farms and More", 
        url="https://hypixelfarms.github.io/", 
        description="body text", 
        color=0x4ef207
    )
    embed.set_thumbnail(url="") # enter the URL location of the picture to use for the embed picture
    await ctx.send(embed=embed)

请访问website 了解有关嵌入功能的更多详细信息。

【讨论】:

以上是关于如何为 github.io 网站获取自定义不和谐嵌入?的主要内容,如果未能解决你的问题,请参考以下文章

如何为不和谐机器人调用异步函数

如何为不和谐的 js 解决快照(50/50 的机会踢成员)

如何为基于 wordpress 自定义主题的网站进行响应式设计?

如何为 DataTable 中的每一行设置/获取自定义数据

如何为不和谐服务器制作“!踢”命令消息?

如何为不和谐的机器人制作一个可变的嵌入列表?