From 0e8cc80a8863397da17c0ce5156354562d3100dc Mon Sep 17 00:00:00 2001 From: Florian Hoss Date: Tue, 25 Nov 2025 05:00:51 +0100 Subject: [PATCH] Document excludeFromSearch front matter parameter Added documentation for the `excludeFromSearch` front matter parameter, explaining its default value and effect on sitemap and search index inclusion. --- exampleSite/content/docs/front-matter/index.md | 1 + 1 file changed, 1 insertion(+) diff --git a/exampleSite/content/docs/front-matter/index.md b/exampleSite/content/docs/front-matter/index.md index 5d02d074..1c452c9f 100644 --- a/exampleSite/content/docs/front-matter/index.md +++ b/exampleSite/content/docs/front-matter/index.md @@ -54,6 +54,7 @@ Front matter parameter default values are inherited from the theme's [base confi | `series_order` | _Not set_ | Number of the article within the series. | | `summary` | Auto generated using `summaryLength` (see [site configuration]({{< ref "configuration#site-configuration" >}})) | When `showSummary` is enabled, this is the Markdown string to be used as the summary for this article. | | `xml` | `true` unless excluded by `sitemap.excludedKinds` | Whether or not this article is included in the generated `/sitemap.xml` file. | +| `excludeFromSearch` | `false` | Whether or not this article should be excluded from the sitemap and search index. When `true`, the page will not appear in `sitemap.xml` or `index.json`. | | `layoutBackgroundBlur` | `true` | Makes the background image in the background heroStyle blur with the scroll | | `layoutBackgroundHeaderSpace` | `true` | Add space between the header and the body. |