【杂项】完美解决github仓库中的README.md的图片不显示问题

talk is cheap, show me the code.

以项目 https://github.com/tanpenggood/web-security 为例。

目录结构如下:

├── src
├── target
├── LICENSE
├── localhost_8080_.png
├── pom.xml
└── README.md

版本一 本地显示✅,github不显示❌
![](localhost_8080_.png)

版本二 本地不显示❌,github不显示❌
![](https://github.com/tanpenggood/web-security/blob/master/localhost_8080_.png)

版本三 本地显示✅,github显示✅
![](https://github.com/tanpenggood/web-security/raw/master/localhost_8080_.png)

版本四 本地显示✅,github显示✅
![](https://raw.githubusercontent.com/tanpenggood/web-security/master/localhost_8080_.png)

总结

使用版本三、版本四的url,可完美解决github仓库中的README.md的图片不显示的问题。

猜你喜欢

转载自blog.csdn.net/AV_woaijava/article/details/108178750