我希望将外部图片放在使用Pelican
创建的博客上所以我试试:
some text
.. image:: http://example.com/image.png
:alt: Alt text
运行" pelican -s pelicanconf.py"我有错误:
ERROR: Better Fig. Error: image not found: /Users/kendriu/sources/pelican-blog/contenthttp:/example.com/image.png
ERROR: Could not process ./4_joe.rst
| [Errno 2] No such file or directory: u'/Users/kendriu/sources/pelican-blog/contenthttp:/example.com/image.png'
我的帖子中没有图片。
问题是:如何将外部图像放入我的博客中。
答案 0 :(得分:0)
Pelican希望路径位于内容目录中。一般来说,这是一个好主意,因为它不适合提取内容和使用其他人的带宽。
你必须使用原始标签这样做:
.. raw:: html
<img src="http://example.com/image.jpg" alt="alt text">
最佳解决方案是下载图片(假设您有权限),然后将其包含在您的内容文件夹中,然后自己托管,这是一种默认行为。
要托管来自Google云端硬盘的图片,请参阅此讨论:Displaying files (e.g. images) stored in Google Drive on a website
Mori的解决方案适合我:
https://drive.google.com/uc?id=FILE-ID
在上面的例子中将其转化为:
.. raw:: html
<img src="https://drive.google.com/uc?id=0B9o1MNFt5ld1N3k1cm9tVnZxQjg">
使用Google Drive API就像魅力一样。