Feed不在Jekyll中显示图像

时间:2015-11-17 02:30:04

标签: jekyll

我最近将我的blog转换为Jekyll环境,然后我添加了以下几个网站聚合器使用的特定Feed。但是,我注意到图像没有合并到聚合器中,例如here

当我在markdown中写帖子时,我认为它可能是一些令人困惑的图像路径,因此我将几个帖子的路径从![](/images/blog/2015/GoogleNgram.png)更改为:![]({{ site.url }}/images/blog/2015/GoogleNgram.png)但没有任何反应。任何建议都将受到高度赞赏。

---
layout: null
---
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
    <channel>
        <title>Daniel</title>
        <description>Posts categorized as 'R'</description>
        <link>{{ site.url }}</link>
        <atom:link href="{{ site.url }}/feed.r.xml" rel="self" type="application/rss+xml" />
        {% for post in site.posts %}
        {% if post.categories contains 'R' %}

            <item>
                <title>{{ post.title | xml_escape }}</title>
                {% if post.excerpt %}
                    <description>{{ post.excerpt | xml_escape }}</description>
                {% else %}
                    <description>{{ post.content | xml_escape }}</description>
                {% endif %}
                <pubDate>{{ post.date | date_to_rfc822 }}</pubDate>
                <link>{{ site.url }}{{ post.url }}</link>
                <guid isPermaLink="true">{{ site.url }}{{ post.url }}</guid>
            </item>
            {% endif %}
        {% endfor %}
    </channel>
</rss>

0 个答案:

没有答案