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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 4 deletions

10
yaml.md
View File

@ -28,8 +28,10 @@ child:
### Reference content ### Reference content
```yaml ```yaml
values: values: &ref
- &ref Something to reuse - These values
- *ref # Reused content - will be reused below
```
other_values:
<<: *ref
```