Skip to main content
OwnDocs

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

statusstring

draft, beta, stable, deprecated, archived.

levelstring

beginner, intermediate, advanced.

readingTimenumberDefault: calculated

Override the auto-calculated minutes.

hideMetabooleanDefault: false

Suppresses the meta bar.

Was this page helpful?