Markdown中破碎的图像链接

时间:2017-12-23 11:24:36

标签: image github markdown

我正在以下位置处理.md文件:

https://github.com/markroche92/SDND-Traffic-Sign-Classification/blob/master/writeup_template.md

当我在Github中查看.md文件时,我的链接图像都没有出现。我使用了以下降价代码来尝试链接图像:

---

**Build a Traffic Sign Recognition Project**

[//]: # (Image References)

[image1]: ./histogram_input_data.png "Input_Data"
[image2]: ./Label26.png "Label_26"
[image3]: ./Label36.png "Label_36"
[image4]: ./Label41.png "Label_41"
[image5]: ./channels.png "Channels"
[image6]: ./nn_results.png "NN_Results"
[image7]: ./GermanRoadSigns/x32/132.jpg "Img_1"
[image8]: ./GermanRoadSigns/x32/232.jpg "Img_2"
[image9]: ./GermanRoadSigns/x32/332.jpg "Img_3"
[image10]: ./GermanRoadSigns/x32/432.jpg "Img_4"
[image11]: ./GermanRoadSigns/x32/532.jpg "Img_5"
[image12]: ./int_ims.png "Performance"
[image13]: ./top_five_predictions.png "Top_Five_Predictions"
[image14]: ./structure.jpg "Network_structure"

---

...

The following histogram shows the distribution of training, validation and 
test set images per label:

![alt text][image1]

An example image was visualised for each label. Three are displayed below:

![alt text][image2]
![alt text][image3]
![alt text][image4]


Each image has three channels (red, green, blue). The three channels are 
visualized below for an example image:

![alt text][image5]

然而,当在Github上查看.md时,似乎没有出现任何图像。谁能告诉我我在哪里错了?

2 个答案:

答案 0 :(得分:1)

在实际的.md文件中,你没有使用你所谓的引用中的相对URL,但绝对是这样的:

select to_date('01-JAN-2018', 'DD-MON-YYYY')
from dual

这不起作用,因为它实际上是标准的GitHub文件页面,而不是图像本身。要链接到图片,请从路径中删除https://github.com/markroche92/SDND-Traffic-Sign-Classification/blob/master/structure.JPG 并将域名更改为/blob - 或者实际使用包含或不包含rawgit.com的相对网址,但请确保将字母大小写正确

./

答案 1 :(得分:0)

我的某些图像也遇到了这个问题,而其他图像则没有。最后就是我如何在markdown文件中将图片名称大写。例如:

我计算机上的图像名称: oneGreatImage.png

我的Markdown文件中的图像名称: onegreatImage.png

当我再次大写 G 并推送所做的更改时,它加载得很好。 似乎GitHub对于匹配图像上的文件名非常挑剔,因此请仔细检查。