Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/xpath/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
提要未在Jekyll中显示图像_Jekyll - Fatal编程技术网

提要未在Jekyll中显示图像

提要未在Jekyll中显示图像,jekyll,Jekyll,我最近将我的环境转换为Jekyll环境,然后添加了以下几个站点聚合器使用的特定提要。但是,我注意到,例如,聚合器中没有合并图像 当我在markdown中写文章时,我认为这可能是一些令人困惑的图像路径,所以我从更改了几篇文章的路径![](/images/blog/2015/GoogleNgram.png)至:![]({site.url}}/images/blog/2015/GoogleNgram.png)但什么也没发生。如有任何建议,将不胜感激 --- layout: null --- <?

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

当我在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>
---
布局:空
---
丹尼尔
归类为“R”的职位
{{site.url}
{site.posts%中的post为%s}
{%如果post.categories包含“R”}
{{post.title | xml_escape}}
{%if post.extract%}
{{post.extracpt | xml_escape}}
{%else%}
{{post.content | xml_escape}}
{%endif%}
{{post.date{date}
{{site.url}}{{post.url}}
{{site.url}}{{post.url}}
{%endif%}
{%endfor%}

落在403/禁止页面上。DNS问题。请看,这应该是github的问题,它正在工作,尽管有时我必须刷新页面几次。主要的问题不是403,而是图像+提要@DavidJacquel