From 1b8b79e186c67e7a940ac018fb9d2b97cc46cf84 Mon Sep 17 00:00:00 2001 From: mayankshouche Date: Thu, 17 Apr 2025 09:50:16 -0700 Subject: [PATCH 1/4] add keywords frontmatter --- page.mdx | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/page.mdx b/page.mdx index e4f967921..6ea5139ac 100644 --- a/page.mdx +++ b/page.mdx @@ -177,7 +177,19 @@ them into your page's metadata. Meta tags with colons need to be wrapped in quotes. ```md +--- "twitter:image": "/images/your-photo.jpg" +--- ``` See [our SEO page](/settings/seo) for all supported meta tags. + +You can also improve a specific page's discoverability in Mintlify's built-in search by +providing `keywords` in your frontmatter. These keywords won't appear as part of the page +content, but users that search for them will be shown the page as a result. + +```md +--- +keywords: ['search', 'indexing'] +--- +``` From ea7d91db449de8bfe4d3e0194cc00d76fbc06897 Mon Sep 17 00:00:00 2001 From: mayankshouche Date: Thu, 17 Apr 2025 10:00:43 -0700 Subject: [PATCH 2/4] wording --- page.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/page.mdx b/page.mdx index 6ea5139ac..9dd7760e6 100644 --- a/page.mdx +++ b/page.mdx @@ -184,7 +184,7 @@ quotes. See [our SEO page](/settings/seo) for all supported meta tags. -You can also improve a specific page's discoverability in Mintlify's built-in search by +You can also enhance a specific page's discoverability in the built-in search by providing `keywords` in your frontmatter. These keywords won't appear as part of the page content, but users that search for them will be shown the page as a result. From 3d504353917364a81e6a08ff0d08e83c2b013b2a Mon Sep 17 00:00:00 2001 From: mayankshouche Date: Thu, 17 Apr 2025 10:02:37 -0700 Subject: [PATCH 3/4] more wording --- page.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/page.mdx b/page.mdx index 9dd7760e6..7221138c6 100644 --- a/page.mdx +++ b/page.mdx @@ -185,8 +185,8 @@ quotes. See [our SEO page](/settings/seo) for all supported meta tags. You can also enhance a specific page's discoverability in the built-in search by -providing `keywords` in your frontmatter. These keywords won't appear as part of the page -content, but users that search for them will be shown the page as a result. +providing `keywords` in your metadata. These keywords won't appear as part of the page +content or in search results, but users that search for them will be shown the page as a result. ```md --- From bc0f6db3d3fe77509f48e52ad94a613c2a4199c9 Mon Sep 17 00:00:00 2001 From: Brandon Waselnuk Date: Fri, 18 Apr 2025 09:47:45 -0700 Subject: [PATCH 4/4] added header for discoverability --- page.mdx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/page.mdx b/page.mdx index 7221138c6..5d9357651 100644 --- a/page.mdx +++ b/page.mdx @@ -184,6 +184,8 @@ quotes. See [our SEO page](/settings/seo) for all supported meta tags. +## Internal Search Optimization + You can also enhance a specific page's discoverability in the built-in search by providing `keywords` in your metadata. These keywords won't appear as part of the page content or in search results, but users that search for them will be shown the page as a result.