From dd9cb2dd91a1b52cde2ed8aa67ad7fa2bf1fd497 Mon Sep 17 00:00:00 2001 From: Bhavy Singhal Date: Thu, 11 Jun 2026 17:06:28 +0530 Subject: [PATCH 1/3] docs: add indexing comparison table to hidden pages --- organize/hidden-pages.mdx | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/organize/hidden-pages.mdx b/organize/hidden-pages.mdx index 1140a5f67d..9fbfd001b9 100644 --- a/organize/hidden-pages.mdx +++ b/organize/hidden-pages.mdx @@ -94,6 +94,15 @@ To hide a tab, add the `hidden` property for the tab in your `docs.json` file: By default, hidden pages don't appear in indexing for search engines, documentation site search, or as AI assistant context. You have two ways to include hidden content in search and indexing. +The following table summarizes how each property affects page visibility and indexing: + +| Property | Sidebar Navigation | Site Search | Sitemap | Search Engine Indexing | AI Assistant Context | +|---|---|---|---|---|---| +| `hidden: true` | ❌ Hidden | ❌ Excluded | ❌ Excluded | ❌ Excluded | ❌ Excluded | +| `noindex: true` | ✅ Visible | ✅ Included | ✅ Included | ❌ Excluded | ❌ Excluded | +| `searchable: true` (on hidden tab/group) | ❌ Hidden | ✅ Included | ✅ Included | ✅ Included | ✅ Included | +| `seo.indexing: "all"` (in `docs.json`) | ❌ Hidden | ✅ Included | ✅ Included | ✅ Included | ✅ Included | + ### Include all hidden pages To include every hidden page across your site in search, sitemaps, and AI context, add the `seo` property to your `docs.json`: From af17f99b90f54f456e59a1e677d68ea1ae08fcaa Mon Sep 17 00:00:00 2001 From: Bhavy Singhal Date: Tue, 16 Jun 2026 07:15:06 +0530 Subject: [PATCH 2/3] docs: remove emojis from indexing comparison table --- organize/hidden-pages.mdx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/organize/hidden-pages.mdx b/organize/hidden-pages.mdx index 9fbfd001b9..b829193408 100644 --- a/organize/hidden-pages.mdx +++ b/organize/hidden-pages.mdx @@ -98,10 +98,10 @@ The following table summarizes how each property affects page visibility and ind | Property | Sidebar Navigation | Site Search | Sitemap | Search Engine Indexing | AI Assistant Context | |---|---|---|---|---|---| -| `hidden: true` | ❌ Hidden | ❌ Excluded | ❌ Excluded | ❌ Excluded | ❌ Excluded | -| `noindex: true` | ✅ Visible | ✅ Included | ✅ Included | ❌ Excluded | ❌ Excluded | -| `searchable: true` (on hidden tab/group) | ❌ Hidden | ✅ Included | ✅ Included | ✅ Included | ✅ Included | -| `seo.indexing: "all"` (in `docs.json`) | ❌ Hidden | ✅ Included | ✅ Included | ✅ Included | ✅ Included | +| `hidden: true` | Hidden | Excluded | Excluded | Excluded | Excluded | +| `noindex: true` | Visible | Included | Included | Excluded | Excluded | +| `searchable: true` (on hidden tab/group) | Hidden | Included | Included | Included | Included | +| `seo.indexing: "all"` (in `docs.json`) | Hidden | Included | Included | Included | Included | ### Include all hidden pages From e49b3514a1c76dee0729cd6cd85c2834be1c5d80 Mon Sep 17 00:00:00 2001 From: Bhavy Singhal Date: Tue, 16 Jun 2026 07:18:42 +0530 Subject: [PATCH 3/3] docs: use sentence case for table column headers --- organize/hidden-pages.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/organize/hidden-pages.mdx b/organize/hidden-pages.mdx index b829193408..d58f6ec692 100644 --- a/organize/hidden-pages.mdx +++ b/organize/hidden-pages.mdx @@ -96,7 +96,7 @@ By default, hidden pages don't appear in indexing for search engines, documentat The following table summarizes how each property affects page visibility and indexing: -| Property | Sidebar Navigation | Site Search | Sitemap | Search Engine Indexing | AI Assistant Context | +| Property | Sidebar navigation | Site search | Sitemap | Search engine indexing | AI assistant context | |---|---|---|---|---|---| | `hidden: true` | Hidden | Excluded | Excluded | Excluded | Excluded | | `noindex: true` | Visible | Included | Included | Excluded | Excluded |