我正在尝试从gitub创建一个网站并遇到了一些问题
http://yonicd.github.io/Elections/
我正在写下降价图片链接
![Current Day](https://github.com/yonicd/Elections/blob/master/images/LastDayPlot.png)
你可以看到:
https://github.com/yonicd/Elections/tree/master/images
答案 0 :(得分:2)
您似乎需要更改其尝试获取图片的网址。
例如:
目前正在使用 -
<p><img src="https://github.com/yonicd/Elections/blob/master/images/pad_screen_grab.png"
alt="Snapshot of Election Analysis Page"></p>
更改为 -
<p><img src="https://raw.githubusercontent.com/yonicd/Elections/master/images/pad_screen_grab.png"
alt="Snapshot of Election Analysis Page"></p>
正如您所看到的,如果您点击它们,第一个将链接到GitHub仓库中图像的位置,而第二个将只给您原始图像文件。
编辑:你可以在这个演示中看到它 - http://jsfiddle.net/ghnfrr1r/