diff --git a/content/600-about/200-prisma-docs/30-docs-components/03-frontmatter.mdx b/content/600-about/200-prisma-docs/30-docs-components/03-frontmatter.mdx
index 54850c53e4..58a5eaa110 100644
--- a/content/600-about/200-prisma-docs/30-docs-components/03-frontmatter.mdx
+++ b/content/600-about/200-prisma-docs/30-docs-components/03-frontmatter.mdx
@@ -2,11 +2,14 @@
title: Front matter
metaDescription: Supported front matter variables.
search: false
+tocDepth: 3
---
-## title
+## Required
+
+### title
The `
` title of the page. This title appears at the top of the page, and in the left-hand navigation.
@@ -17,7 +20,7 @@ Note:
- You can wrap the `title` text in single quotes, but this is not mandatory.
- If you wrap the `title` text in single quotes, then you cannot include apostrophes in the text.
-## metaTitle
+### metaTitle
The `` of the page - falls back to `title` (`h1`).
@@ -30,11 +33,13 @@ Note:
- You can wrap the `metaTitle` text in single quotes, but this is not mandatory.
- If you wrap the `metaTitle` text in single quotes, then you cannot include apostrophes in the text.
-## navTitle
+## Optional
+
+### navTitle
Specifies a different, usually shorter title for the left-hand navigation.
-## metaDescription
+### metaDescription
The `` of the page.
@@ -43,29 +48,35 @@ Note:
- You can wrap the `metaDescription` text in single quotes, but this is not mandatory.
- If you wrap the `metaDescription` text in single quotes, then you cannot include apostrophes in the text.
-## staticLink
+### staticLink
Accepts `true` or `false` (defaults to `false`).
If `true`, this option turns the page into a heading in the left-hand navigation. This heading cannot be clicked by the docs user. For example: https://www.prisma.io/docs/concepts/overview
-> **Note**: The page still exists, but docs users can only navigate to it with the breadcrumb trail. We recommend that you add a [subsections](/about/prisma-docs/docs-components/mdx-examples#subsections) MDX component to the page, so that it contains useful content when a user navigates to it with the breadcrumb trail.
+Note:
+
+- The page still exists, but docs users can only navigate to it with the breadcrumb trail. We recommend that you add a [subsections](/about/prisma-docs/docs-components/mdx-examples#subsections) MDX component to the page, so that it contains useful content when a user navigates to it with the breadcrumb trail.
-## preview
+### preview
Accepts `true` or `false` (defaults to `false`).
Adds a `preview` label to a page in the left-hand navigation.
-## toc
+### toc
-Enable or disable table of contents navigation on the page (defaults to `false`). For example:
+Enable or disable table of contents navigation on the page (defaults to `true`). For example:
```
toc: true
```
-## tocDepth
+Note:
+
+- Requires to also customize `tocDepth` to have any visible effect.
+
+### tocDepth
Controls the depth of headings to show in the in-page ToC:
@@ -75,7 +86,7 @@ tocDepth: 2
> **Note**: Currently defaults up to level - `h2`
-## hidePage
+### hidePage
Accepts `true` or `false` (defaults to `false`).
@@ -90,7 +101,7 @@ Note:
- A page hidden with `hidePage` is not listed by the [subsections](/about/prisma-docs/docs-components/mdx-examples#subsections) MDX component.
- A page hidden with `hidePage` is still findable by docs users with a search. To omit a page from the search results, use the [`search`](#search) tag.
-## search
+### search
Accepts `true` or `false` (defaults to `true`).