1
0
Fork 0
freesewing/sites/dev/docs/howtos/editors/frontmatter/about
Joost De Cock ab3204f9f1 chore: Port FreeSewing.dev to docusaurus
The replaces the NextJS site powering FreeSewing.dev with a Docusaurus
setup. It's part of my efforts to simplify FreeSewing's setup so we can
focus on our core value proposition.
2024-09-28 13:13:48 +02:00
..
readme.mdx chore: Port FreeSewing.dev to docusaurus 2024-09-28 13:13:48 +02:00

---
title: About Frontmatter
order: 10
---

Frontmatter is a way to add metadata to Markdown documents.

Frontmatter sits at the top of the file (it's matter that's at the front) and is
surrounded by lines with three dashes on them. It contains several keys with a value. 

The `title` key is required on every page, it holds the title of the page. 

The `order` key is not required and can be used to sort pages in a certain order, if there is no order key then the pages will be sorted alphabetically.

```md
---
title: About Frontmatter
order: 20
---
```

<ReadMore />