我遇到以下问题...... 我为我的项目创建了GitHub-Page,因为我不是网页开发人员而且没有HTML或CSS的任何特殊技能,我用template生成了这个页面你可以从您的存储库设置中选择......
现在我遇到的问题是,从模板生成的Jekyll页面与我的 README.md 组合在一起并不显示预览图像。在我的 README.md 文件中,我使用此标记指定了图像:
| ![Preview Image](https://github.com/0x1C1B/JContacts/blob/master/doc/img/preview.png) |
|:--:|
| *Preview image of application* |
但是Jekyll只显示图像的订阅,你可以看到它here。 是否有可能解决这个问题,还是模板依赖问题?
编辑:这是生成的HTML代码:
<table>
<thead>
<tr>
<th style="text-align: center"><img src="https://github.com/0x1C1B/JContacts/blob/master/doc/img/preview.png" alt="Preview Image" /></th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: center"><em>Preview image of application</em></td>
</tr>
</tbody>
</table>
答案 0 :(得分:0)
要在GitHub存储库中对图像使用absolute-url,请使用指向&#34; raw&#34;的链接。而是形象。
换句话说,请改用以下网址:
<强> https://github.com/0x1C1B/JContacts/raw/master/doc/img/preview.png
强>