From 00be79c61f236d32bb0ce3c3aa21574dd046c66c Mon Sep 17 00:00:00 2001
From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com>
Date: Wed, 25 Mar 2026 19:08:06 +0000
Subject: [PATCH 1/2] Update custom heading IDs to reflect h5 and h6 support
Generated-By: mintlify-agent
---
create/text.mdx | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/create/text.mdx b/create/text.mdx
index 2e6ed180c..2af134456 100644
--- a/create/text.mdx
+++ b/create/text.mdx
@@ -29,6 +29,7 @@ By default, anchor IDs are generated automatically from header text. You can ove
```mdx
## My section {#my-custom-anchor}
### Configuration options {#config}
+##### Deep detail {#detail}
```
The custom ID replaces the auto-generated anchor, so you can link to the heading with `#my-custom-anchor` or `#config` instead of the default slugified text.
@@ -36,7 +37,7 @@ The custom ID replaces the auto-generated anchor, so you can link to the heading
This is useful when you want stable anchor links that don't change if you update the heading text, or when you need shorter, more memorable anchors.
- Custom heading IDs are supported on heading levels 1 through 4 (`#` to `####`). Levels 5 and 6 are not supported.
+ Custom heading IDs are supported on all heading levels 1 through 6 (`#` to `######`).
### Disabling anchor links
From 46f1f6a6f972e29331951b589b4f14454863eb27 Mon Sep 17 00:00:00 2001
From: Ethan Palm <56270045+ethanpalm@users.noreply.github.com>
Date: Wed, 25 Mar 2026 12:48:59 -0700
Subject: [PATCH 2/2] remove note
---
create/text.mdx | 4 ----
1 file changed, 4 deletions(-)
diff --git a/create/text.mdx b/create/text.mdx
index 2af134456..d2c824ac4 100644
--- a/create/text.mdx
+++ b/create/text.mdx
@@ -36,10 +36,6 @@ The custom ID replaces the auto-generated anchor, so you can link to the heading
This is useful when you want stable anchor links that don't change if you update the heading text, or when you need shorter, more memorable anchors.
-
- Custom heading IDs are supported on all heading levels 1 through 6 (`#` to `######`).
-
-
### Disabling anchor links
By default, headers include clickable anchor links that allow users to link directly to specific sections. You can disable these anchor links using the `noAnchor` prop in HTML or React headers.