如何在 github 中添加图片横幅?

How to add image banner in github?

我想添加在搜索 Github 主题时显示的图像横幅(因为 repo 脱颖而出)。

我想做这样的事情

目前,我正在 readme.md 文件的顶部添加图像,但它不起作用。

<h1 align="center">
 <img src="image-url-here" />
</h1>

# rest of readme ..

我应该怎么做?

这是您的存储库设置下的"Social Preview"


README.md写成Markdown。然后它被翻译成HTML。 md 用于 "Markdown".

你的HTML会这样写:

# [description of the image](image-url-here)

# 表示第一层 header,![description of the image](image-url-here) 是图像的 link,alt 为 "description of the image"。

可以在 Writing On GitHub 中找到更多帮助。

  • 只需转到回购设置

  • 然后在社交预览下点击编辑并上传您的横幅。