From 132babca6ea6256fd2a99c44eebb6836f6ac6bf5 Mon Sep 17 00:00:00 2001 From: "Rico Sta. Cruz" Date: Sun, 23 Feb 2020 20:34:51 +1100 Subject: [PATCH] Update yaml.md --- yaml.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/yaml.md b/yaml.md index ec7bd29c4..c0182ad60 100644 --- a/yaml.md +++ b/yaml.md @@ -28,8 +28,10 @@ child: ### Reference content ```yaml -values: -- &ref Something to reuse -- *ref # Reused content +values: &ref + - These values + - will be reused below + +other_values: + <<: *ref ``` -