diff --git a/yaml.md b/yaml.md index 695325ae5..c0182ad60 100644 --- a/yaml.md +++ b/yaml.md @@ -24,3 +24,14 @@ child: <<: *defaults b: 4 ``` + +### Reference content + +```yaml +values: &ref + - These values + - will be reused below + +other_values: + <<: *ref +```