我最近搬到鹈鹕为我的博客。我正在使用rst写我的帖子。我现在使用缩略图插件为我的帖子创建缩略图,想法是这些将链接到完整的图片。该文件如下所示:
|Some reference to image|
text
text
.. |Some reference to image| image:: {filename}images/my-image_small.png
:target: {filename}/images/my-image.png
树结构如下:
[asinha@localhost blogdir]$ tree
.
├── content
│ ├── images
│ │ └── my-image.png
│ └── some-post.rst
└── output
3 directories, 2 files
这里的问题是两个图像引用都应该引用content/
文件夹中的路径,但是缩略图插件会在output/
文件夹中创建图像。因此,当 pelican 运行时,它不会找到缩略图图像,而是将它们替换为替代文本。即使我{filename}
从缩略图规范中删除了该部分,它也不起作用,因为它认为图像应该在output/$postdir/images
. 这应该怎么做?我错过了什么?我想要的不是插件的目的(什么是?)?