Merge pull request #1363 from aarti/patch-1

[YAML]: Add Reference content
This commit is contained in:
Rico Sta. Cruz 2020-02-23 20:35:22 +11:00 committed by GitHub
commit ded62323ec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 0 deletions

11
yaml.md
View File

@ -24,3 +24,14 @@ child:
<<: *defaults <<: *defaults
b: 4 b: 4
``` ```
### Reference content
```yaml
values: &ref
- These values
- will be reused below
other_values:
<<: *ref
```