hidden: true in the page's frontmatter:1234--- title: Internal API Reference hidden: true ---
robots=noindex.hidden: true on a group in docs.json:12345{ "group": "Internal", "hidden": true, "pages": ["internal/debug", "internal/metrics"] }
hidden: true:1234567{ "tab": "Beta", "hidden": true, "groups": [ { "group": "Beta Features", "pages": ["beta/feature-x"] } ] }
| Behavior | Hidden page (frontmatter) | Hidden tab |
| Visible in sidebar | No | No |
| Visible in tab bar | N/A | No |
| Accessible by URL | Yes | Yes |
| In sitemap.xml | No | Yes |
| In llms.txt | No | Yes |
robots: noindex | Yes | No |
123456789101112131415161718192021{ "navigation": { "tabs": [ { "tab": "Docs", "groups": [...] }, { "tab": "SEO", "hidden": true, "groups": [ { "group": "Topics", "pages": [ "seo/how-to-authenticate", "seo/best-practices", "seo/troubleshooting-errors" ] } ] } ] } }
sitemap.xml and llms.txt, and indexed by search engines. Users who land on these pages via search can still navigate the site normally; the tab just does not appear in the tab bar or sidebar.