From 90cdab06363474e5abf70eec64537f6678191ee6 Mon Sep 17 00:00:00 2001 From: Jack Baldry Date: Wed, 22 Jan 2025 07:12:16 +0000 Subject: [PATCH] Add example Signed-off-by: Jack Baldry --- docs/sources/write/front-matter/index.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/docs/sources/write/front-matter/index.md b/docs/sources/write/front-matter/index.md index 26d009a33..002883c9d 100644 --- a/docs/sources/write/front-matter/index.md +++ b/docs/sources/write/front-matter/index.md @@ -345,6 +345,21 @@ For `labels.stage`, the supported values and the resulting published labels are - `public-preview`: Public preview - `general-availability`: General availability (GA) +For example, if a _single page_ describes an experimental feature, the source file front matter should include the following: + +```yaml +labels: + stage: experimental +``` + +For a _directory of pages_ that describe an experimental feature, the branch bundle `_index.md` file front matter should include the following: + +```yaml +cascade: + labels: + stage: experimental +``` +