From cf52d5d7e325d79f303ae72f73a438a9931cb702 Mon Sep 17 00:00:00 2001 From: aarti Date: Mon, 17 Feb 2020 15:13:10 -0800 Subject: [PATCH] Add Reference content --- yaml.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/yaml.md b/yaml.md index 695325ae5..ec7bd29c4 100644 --- a/yaml.md +++ b/yaml.md @@ -24,3 +24,12 @@ child: <<: *defaults b: 4 ``` + +### Reference content + +```yaml +values: +- &ref Something to reuse +- *ref # Reused content +``` +