为NPM模块处理此repo
图像显示在Github上(向下滚动)
https://github.com/ORESoftware/suman
但是在NPM上,尽管HTTP 200要从Github检索图像,但它并没有显示
https://www.npmjs.com/package/suman
这是所有Markdown,图像的降价是:
![alt text](https://github.com/ORESoftware/suman/blob/master/images/suman.png "Suman Primary Logo")
任何人都知道为什么这个降价图片代码不适用于NPM?
答案 0 :(得分:4)
使用此网址(https://raw.githubusercontent.com/ORESoftware/suman/master/images/suman.png)
您的网址指向网页而非图片
答案 1 :(得分:1)
这是因为网址
https://github.com/mvsowndapan/react-dnd-crop/blob/master/asset/icons/labelIcon.png
请求包含图像的github页面,而不是图像本身。
要获取图片,只需在网址末尾添加?raw=true
https://github.com/mvsowndapan/react-dnd-crop/blob/master/asset/icons/labelIcon.png?raw=true
像这样。效果很好