1
0
mirror of https://github.com/onkelbeh/cheatsheets.git synced 2025-06-15 22:57:33 +02:00

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

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