Skip to content

合并 Frontmatter

你可以为主入口点和外部 Markdown 页面提供 frontmatter。如果其中有相同的 key,主入口点的 key 拥有更高的优先级。例如:

md
---
src: ./cover.md
background: https://sli.dev/bar.png
class: text-center
---
md
---
layout: cover
background: https://sli.dev/foo.png
---

# 封面

这是一个封面页

其效果最终与下述页面相同:

md
---
layout: cover
background: https://sli.dev/bar.png
class: text-center
---

# 封面

这是一个封面页

Released under the MIT License.