为了让Pelican生成的html链接到图像,表达路径的正确方法是什么?

时间:2015-01-31 22:13:07

标签: html pelican

我刚刚开始使用Pelican创建博客并希望链接到图片。我通过在Markdown文件中包含以下行来完成此操作:

<img src="./myImg1a.png" alt="./myImg.png" style="width: 750px; height: 800px;"/>

这条线在html文件中成功复制,Pelican放在输出目录中(即 / myBlog / output )。我将png文件放在输出目录中(即与html文件相同的目录,并出现以下错误:

WARNING:root:Unable to find file /category/myImg1a.png/index.html or variations. 

其中 / category 指的是 myBlog / output / category 。相反,当我使用以下html代码时:

<img src="/myImg1a.png" alt="/myImg.png" style="width: 750px; height: 800px;"/>
一切顺利。我不明白为什么会这样:

  1. 如果图像文件与html文件位于同一目录中,则不应该&#34; ./ myImg1.png&#34;是正确的&#34; /myImg.png"不正确?

  2. 为什么要搜索 /category/myImg1a.png/index.html 文件夹?

0 个答案:

没有答案