
This brings blog posts, showcase posts, and newsletter editions into the Docusaurus site. It also adds support for using TailwindCSS inside a container. So this will probably end up being the new freesewing.org site in v4.
22 lines
592 B
Text
22 lines
592 B
Text
---
|
|
title: About Frontmatter
|
|
sidebar_position: 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
|
|
sidebar_position: 20
|
|
---
|
|
```
|
|
|
|
<ReadMore />
|