draft, beta, stable, deprecated, archived.
Page Meta
1 min readStableBeginner
Every MDX page can declare YAML frontmatter that drives a compact meta bar — reading time, status, and difficulty level.
Quick Start
Declare a status and level in frontmatter.
YAML
YAML
---
status: stable
level: beginner
---Adding Options
Add a reading-time override and hideMeta control.
YAML
YAML
---
status: beta
level: intermediate
readingTime: 4
hideMeta: false
---Advanced
The full frontmatter contract, including a reading-time override.
YAML
YAML
---
title: Custom Page Title
description: Brief summary for SEO and Open Graph cards.
status: stable
level: advanced
related:
- /getting-started/introduction
- /features/code/code-blocks
tags:
- guide
readingTime: 5
hideMeta: false
---Options
statusstringlevelstringbeginner, intermediate, advanced.
readingTimenumberDefault: calculatedOverride the auto-calculated minutes.
hideMetabooleanDefault: falseSuppresses the meta bar.
Related pages
Was this page helpful?