问题:
今天在写说明文档的时候想要通过 url 引用 github 上的图片,发现直接将文件地址复制下来并不能成功加载,例:
<img src="https://github.com/yeniao96/kfrontbase/master/imgs/wxapp-step1.png">
解决方法:
使用下面方式可以成功访问:
<img src="https://github.com/yeniao96/kfrontbase/raw/master/imgs/wxapp-step1.png">
<img src="https://github.com/yeniao96/kfrontbase/master/imgs/wxapp-step1.png?raw=true">
<img src="https://raw.githubusercontent.com/yeniao96/kfrontbase/master/imgs/wxapp-step1.png">