Update yaml.md

This commit is contained in:
Rico Sta. Cruz
2020-02-23 20:34:51 +11:00
committed by GitHub
parent cf52d5d7e3
commit 132babca6e

10
yaml.md
View File

@@ -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
```