Article summary
Custom summary
If you want to customize the summary of articles on the homepage, you can do so by following these steps:

In the front matter of the article page, add the
excerpt:"summary"attribute. This will update the summary displayed on the homepage.Example:
---
title: Excerpt Test
date: 2022-12-20 12:12:12
tags: Excerpt
categories: Excerpt
excerpt: "这是文章摘要 This is the excerpt of the post"
---Result:

Disable article summary
If you want to disable the article summary, you can do so by following these steps:

- In the front matter of the article page, add the
excerpt: falseattribute. This will cause the homepage summary to disappear.
Example:
---
title: Excerpt Test
date: 2022-12-20 12:12:12
tags: Excerpt
categories: Excerpt
excerpt: false
---