其他分享
首页 > 其他分享> > 在github中存储markdown图片

在github中存储markdown图片

作者:互联网

1.首先,在github上建立仓库用于存放Image(经过测试,好像选择private还是public都没有影响)。
2.将项目clone到本地,将图片放在对应的目录,并push到仓库中,这样在仓库中就可以看到图片了。
3.markdown中插入图片的格式为,其中[ ]存放的是显示的图片名,括号中存放的是图片链接,在这里也就是github的网址。但是存放网址后会出现如下图所示的错误:
在这里插入图片描述
这是因为此时的链接格式如下:
https://github.com/用户名/仓库名/blob/main/路径名/xx.png
需要将blob改成raw即可。

注:
此时有可能在github中图片就不显示,可能是DNS被污染,可以在C:\Windows\System32\drivers\etc下的hosts文件的最后加入如下内容:

# GitHub Start 
192.30.253.112    Build software better, together 
192.30.253.119    gist.github.com
151.101.184.133    assets-cdn.github.com
151.101.184.133    raw.githubusercontent.com
151.101.184.133    gist.githubusercontent.com
151.101.184.133    cloud.githubusercontent.com
151.101.184.133    camo.githubusercontent.com
151.101.184.133    avatars0.githubusercontent.com
151.101.184.133    avatars1.githubusercontent.com
151.101.184.133    avatars2.githubusercontent.com
151.101.184.133    avatars3.githubusercontent.com
151.101.184.133    avatars4.githubusercontent.com
151.101.184.133    avatars5.githubusercontent.com
151.101.184.133    avatars6.githubusercontent.com
151.101.184.133    avatars7.githubusercontent.com
151.101.184.133    avatars8.githubusercontent.com
 # GitHub End

标签:存储,markdown,184.133,151.101,github,githubusercontent,com,图片
来源: https://blog.csdn.net/qq_40537232/article/details/117002195