You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: organize/pages.mdx
+8-1Lines changed: 8 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,10 +10,13 @@ Each page is an MDX file, which combines Markdown content with React components
10
10
11
11
Every page starts with frontmatter, the YAML metadata enclosed by `---` at the beginning of a file. This metadata defines how your page appears and behaves.
12
12
13
-
Use metadata to control:
13
+
Use frontmatter to control:
14
14
15
15
- Page titles and descriptions
16
16
- Sidebar titles, icons, and tags
17
+
- Page layouts
18
+
- SEO meta tags
19
+
- Custom metadata
17
20
18
21
<ResponseFieldname="title"type="string"required>
19
22
The title of your page that appears in navigation and browser tabs.
@@ -47,6 +50,10 @@ Use metadata to control:
47
50
A tag that appears next to your page title in the sidebar.
48
51
</ResponseField>
49
52
53
+
<ResponseFieldname="<custom>"type="string">
54
+
Any valid YAML frontmatter. For example, `product: "API"` or `version: "1.0.0"`.
0 commit comments