如何在github存储库中添加屏幕截图到README? [英] How to add screenshot to READMEs in github repository?

查看:244
本文介绍了如何在github存储库中添加屏幕截图到README?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

是否可以在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 参数,以确保分叉的回购点正确。



出一个例子: https://raw.github.com/altercation/solarized/master/README.md



此外,有关README文件中相关链接的文档: HTTPS:/ /help.github.com/articles/relative-links-in-readmes



当然还有降价文档:http://daringfireball.net/projects/markdown/syntax



另外,如果您创建新分支截图可以避免它们存在于 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?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆