是否可以在一个GitHub存储库的README文件中放置一个截图?语法是什么?
当前回答
尽管已经有了一个公认的答案,我想添加另一种方式来上传图片到GitHub上的自述。
你需要在你的回购中制造问题 拖放在评论区你的图像 图像链接生成后,将其插入到自述文件中
更多细节你可以在这里找到
其他回答
下面一行应该就是你要找的内容
如果文件在存储库中
![ScreenShot](https://raw.github.com/{username}/{repository}/{branch}/{path})
如果您的文件在其他外部url
![ScreenShot](https://{url})
在存储库中从上传文件选项添加图像,然后在README文件中
![Alt text]("enter image url of repositoryhere")
从2021年3月起,现在支持:
将文件附加到标记文件
You can now attach files, including images, to markdown files while you're editing them in the web. This works just like file attachments in issues and pull requests and supports the same file types. Just drag and drag, click and select, or paste. Note: If you add an image to a markdown file, anyone can view the anonymized image URL without authentication, even if the markdown file is in a private repository. To keep images private, serve them from a private network or server that requires authentication. For more information on anonymized URLs see "About anonymized image URLs".
尽管已经有了一个公认的答案,我想添加另一种方式来上传图片到GitHub上的自述。
你需要在你的回购中制造问题 拖放在评论区你的图像 图像链接生成后,将其插入到自述文件中
更多细节你可以在这里找到
将此添加到README
<div align="center">
<img src="/screenshots/screen1.jpg" width="400px"</img>
</div>
推荐文章
- 使用pandoc从Markdown转换为PDF时设置空白大小
- 如何修复Github页面上的HTTP 404 ?
- 如何显示数学方程在一般github的markdown(不是github的博客)
- 无法推送到远程分支,无法解析到分支
- 使用Markdown的Sphinx而不是reST
- 如何在GitHub上创建自己的存储库?
- Github“更新被拒绝,因为远程包含您在本地没有的工作。”
- 降价和图像对齐
- 如何在不同的用户名下推送到GitHub ?
- 在最初创建提交的GitHub上找到一个Pull Request
- Git凭据助手-更新密码
- 标签和释放的区别是什么?
- 切换到另一个Git标记
- Heroku和GitHub:“项目无法检索,内部服务器错误”
- 将现有项目推到Github