github中的图像不会在github页面中加载

时间:2015-03-05 12:03:31

标签: r markdown github-pages github-flavored-markdown

我正在尝试从gitub创建一个网站并遇到了一些问题

  1. 我有一个github存储库https://github.com/yonicd/Elections。在 \ images 子目录中以及 \ www 子目录中找到的图片可以很好地加载到 readme.md 但是当我尝试进入github网页上相同的图片,他们已经断开链接的网站
  2. 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

    1. 当我在R中编译md代码时,编号列表会正确显示,但是当我从github中加载readme html时,编号列表会在每个编号上重置,请参阅工作表使用区域。
    2. https://github.com/yonicd/Elections

1 个答案:

答案 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/