0

我正在尝试从 gitub 制作一个网站,但遇到了一些问题

  1. 我有一个 github 存储库https://github.com/yonicd/Elections。在\images子目录和\www子目录中找到的图像可以很好地加载到readme.md但是当我尝试在该站点的 github 网页上访问相同的图像时,它们的链接已损坏

http://yonicd.github.io/Elections/

我正在markdown中写图片链接

![Current Day](https://github.com/yonicd/Elections/blob/master/images/LastDayPlot.png)

如您所见:

https://github.com/yonicd/Elections/tree/master/images

  1. 当我在 R 中编译 md 代码时,编号列表会正确显示,但是当我从 github 中加载自述文件 html 时,编号列表会在每个数字上重置,请参阅工作表使用区域。

https://github.com/yonicd/Elections

4

1 回答 1

2

看起来您需要更改它试图从中获取图像的 url。

例如:

目前使用 -

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

于 2015-03-05T12:58:20.917 回答