Skip to main content
OwnDocs

Related Pages

1 min readStableBeginner

Frontmatter related renders a card grid of curated next steps below the article body. Entries resolve against the navigation tree, so broken links never render.

Quick Start

Declare related pages in frontmatter.

YAML
YAML
---
related:
  - /getting-started/introduction
---

Adding Options

List several related pages.

YAML
YAML
---
related:
  - /getting-started/introduction
  - /features/code/code-blocks
  - /features/api/api-blocks
---

Advanced

Combine related pages with status and level for a full metadata set.

YAML
YAML
---
status: stable
level: intermediate
related:
  - /features/api/param-fields
  - /features/api/response-fields
---

Options

relatedstring[]

Internal page paths to render as cards.

Was this page helpful?