Skip to content
Blode.md

AI agents: fetch the documentation index at llms.txt. Markdown versions are available by appending .md to any page URL, including this page's markdown.

Frontmatter

All available YAML frontmatter fields for documentation pages.

Every MDX page starts with YAML frontmatter between --- delimiters. The title field is required. All other fields are optional.

Fields

FieldTypeDescriptionRequiredDefault
titlestringPage title displayed in the header and browser tab.Yes
descriptionstringSummary used in meta tags and search results.Yes
sidebarTitlestringOverride the title shown in the sidebar navigation.Yes
iconstringIcon displayed next to the page title in the sidebar.Yes
iconType"regular" | "solid" | "light" | "thin" | "sharp-solid" | "duotone" | "brands"Icon style variant.Yes
mode"default" | "wide" | "custom" | "frame" | "center"Page layout mode.Yes"default"
hiddenbooleanHide this page from navigation. The page is still accessible via direct URL.Yesfalse
deprecatedbooleanMark the page as deprecated. Displays a deprecation badge.Yesfalse
noindexbooleanPrevent search engines from indexing this page.Yesfalse
keywordsstring[]Additional keywords for search indexing.Yes
tagstringDisplay a tag badge next to the page title.Yes
urlstringOverride the navigation link to point to an external URL.Yes
hideApiMarkerbooleanHide the API method badge on OpenAPI pages.Yes
hideFooterPaginationbooleanHide the previous/next navigation at the bottom of the page.Yes

Example

---
title: Authentication
description: Learn how to authenticate API requests.
icon: lock
tag: Updated
mode: wide
---