Jekyll: リキッド構文エラー

作成日 2016年09月17日  ·  3コメント  ·  ソース: jekyll/jekyll

  • []これはバグであり、Jekyllの使用に関する質問ではないと思います。
  • [x] GitHub Pagesで最新のgithub-pagesに更新した場合は、最新のJekyll(または)に更新しました
  • [x] https://jekyllrb.com/docs/contributing/にあるCONTRIBUTIONファイルを読みました
  • []これは機能リクエストです。

  • []私は_macOS_ 10+を使用しています(またはテストしました)
  • [x]私は_Debian / Ubuntu _ GNU / Linuxを使用しています(またはテストしました)
  • []私は_Fedora_ GNU / Linuxを使用しています(またはテストしました)
  • []私は_Arch_ GNU / Linuxを使用しています(またはテストしました)
  • []私は_Other_ GNU / Linuxを使用しています(またはテストしました)
  • []私は_Windows_ 10+を使用しています(またはテストしました)

  • []インストールしようとしていました。
  • []壊れたプラグインAPIがあります。
  • [] GitHub Pagesでエラーが発生し、ローカルで再現しました。
  • [] GitHub Pagesでエラーが発生し、GitHubサポートはそれがJekyllバグであると述べました。
  • [] GitHub Pagesでエラーが発生し、ローカルでテストしませんでした。
  • []私は構築しようとしていました。
  • [x]それは別のバグでした。

    私の複製手順

コンパイル中に次の警告が表示されます。これを修正するにはどうすればよいですか?

Liquid Warning: Liquid syntax error (line 5): Expected id but found open_square in "item in site.[item.label]" in feeds/feed.json
    Liquid Warning: Liquid syntax error (line 19): Expected id but found open_square in "post in site.categories.[page.category]" in /_layouts/category.html
    Liquid Warning: Liquid syntax error (line 19): Expected id but found open_square in "post in site.categories.[page.category]" in /_layouts/category.html
    Liquid Warning: Liquid syntax error (line 19): Expected id but found open_square in "post in site.categories.[page.category]" in /_layouts/category.html
    Liquid Warning: Liquid syntax error (line 19): Expected id but found open_square in "post in site.categories.[page.category]" in /_layouts/category.html
    Liquid Warning: Liquid syntax error (line 19): Expected id but found open_square in "post in site.categories.[page.category]" in /_layouts/category.html
    Liquid Warning: Liquid syntax error (line 19): Expected id but found open_square in "post in site.categories.[page.category]" in /_layouts/category.html
    Liquid Warning: Liquid syntax error (line 19): Expected id but found open_square in "post in site.categories.[page.category]" in /_layouts/category.html
    Liquid Warning: Liquid syntax error (line 19): Expected id but found open_square in "post in site.categories.[page.category]" in /_layouts/category.html
    Liquid Warning: Liquid syntax error (line 19): Expected id but found open_square in "post in site.categories.[page.category]" in /_layouts/category.html

category.html

<h1 class="title">{{ page.title }}</h1>

{% unless page.content == '' %}
  <p>{{ page.content }}</p>
{% endunless %}
<ul id="blog-posts" class="posts">
{% for post in site.categories.[page.category] %}
  <li><span>{{ post.date | date: "%d/%m/%Y" }} &raquo;</span><a href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>

feed.json

{% assign first = true %}
[
{% for collection in site.collections %}
    {% for item in collection %}
        {% for item in site.[item.label] %}
            {% if item.title != null and item.title != empty %}
            {% unless first %},{% endunless %}{
                "title": {{item.title | jsonify}},
                "content": {{item.content | markdownify | strip_html | jsonify}},
                "link": "{{ site.baseurl }}{{ item.url }}",
                "date": "{{ item.date }}",
                "excerpt": "{{ item.snippet }}",
                "search_omit": "{{ item.search_omit }}"
            }
            {% assign first = false %}
            {% endif %}
        {% endfor %}
    {% endfor %}
{% endfor %}


{% for post in site.posts %}
    {% if post.title != null and post.title != empty %}
    {% unless first %},{% endunless %}{
        "title": {{post.title | jsonify}},
        "content": {{post.content | markdownify | strip_html | jsonify}},
        "link": "{{ site.baseurl }}{{ post.url }}",
        "date": "{{ post.date }}",
        "excerpt": "{{ post.snippet }}",
        "search_omit": "{{ post.search_omit }}"
    }
    {% assign first = false %}
    {% endif %}
{% endfor %}

{% for page in site.pages %}
    {% if page.title != null and page.title != empty %}
    {% unless first %},{% endunless %}{
        "title": {{page.title | jsonify}},
        "content": {{page.content | strip_html | jsonify}},
        "link": "{{ site.baseurl }}{{ page.url | replace: 'index.html', '' }}",
        "date": {{ page.date | jsonify }},
        "excerpt": {{ page.description | jsonify }},
        "search_omit": "{{ page.search_omit }}"
    }
    {% assign first = false %}
    {% endif %}
{% endfor %}
]
frozen-due-to-age

最も参考になるコメント

@MertcanGokgozあなたのリンクは404です。 解決策を提供できますか?

編集: site.tags.[page.tag]site.tags[page.tag]に置き換える必要があるようです(ドットを削除)

全てのコメント3件

これはバグではありません。

Jekyllの使用に関するヘルプについては、 https://talk.jekyllrb.comに質問を投稿してください。

エラーメッセージに示されているように、 site.categories.[page.category]は無効です。

@MertcanGokgozあなたのリンクは404です。 解決策を提供できますか?

編集: site.tags.[page.tag]site.tags[page.tag]に置き換える必要があるようです(ドットを削除)

このページは役に立ちましたか?
0 / 5 - 0 評価