问题描述
是否可以在GitHub存储库中的README文件中放置屏幕截图?如何使用Markdown(README.md):
$ b $是什么语法?
b
如果您在回购站中有图片,则可以使用相对URL:
![Alt text] (/relative/path/to/img.jpg?raw=true可选标题)
如果您需要嵌入其他地方托管的图片,您可以使用完整的网址
![Alt text](http://完整/路径/到/ img.jpg可选标题)
GitHub建议您使用相对链接与?raw = true
参数,以确保分叉的回购点正确。
出一个例子:
此外,有关README文件中相关链接的文档:
当然还有降价文档:
另外,如果您创建新分支截图
可以避免它们存在于 master
工作树中
您可以使用以下内容嵌入它们:
![Alt text](/../& lt ;分行名称> /path/to/image.png?raw = true可选标题)
Is it possible to place a screenshot in README file in a GitHub repository? What's the syntax?
If you use Markdown (README.md):
Provided that you have the image in your repo, you can use a relative URL:
![Alt text](/relative/path/to/img.jpg?raw=true "Optional Title")
If you need to embed an image that's hosted elsewhere, you can use a full URL
![Alt text](http://full/path/to/img.jpg "Optional title")
GitHub recommend that you use relative links with the ?raw=true
parameter to ensure forked repos point correctly.
Check out an example: https://raw.github.com/altercation/solarized/master/README.md
Also, the documentation on relative links in README files: https://help.github.com/articles/relative-links-in-readmes
And of course the markdown docs: http://daringfireball.net/projects/markdown/syntax
Additionally, if you create a new branch screenshots
to store the images you can avoid them being in the master
working tree
You can then embed them using:
![Alt text](/../<branch name>/path/to/image.png?raw=true "Optional Title")
这篇关于如何在github存储库中添加屏幕截图到README?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!