excerpt_separator
Jekyllには、あなたに適したオプションがあります。物事は次のようになります:
で_config.yml
:
excerpt_separator: <!--more--> # you can specify your own separator, of course.
あなたの投稿で:
---
layout: post
title: Foo
---
This appears in your `index.html`
This appears, too.
<!--more-->
This doesn't appear. It is separated.
or<!--more-->
ではなく、正確に入力する必要があることに注意してください。<!--More-->
<!-- more -->
あなたのindex.html
:
<!-- Loop in you posts -->
{% for post in site.posts %}
<!-- Here's the header -->
<header>
<h2 class="title"><a href="{{ post.url }}">{{ post.title }}</a></h2>
</header>
<!-- Your post's summary goes here -->
<article>{{ post.excerpt }}</article>
{% endfor %}
出力は次のようになります。
<header>
<h2 class="title"><a href="Your post URL">Foo</a></h2>
</header>
<article>
This appears in your `index.html`
This appears, too.
</article>