|
|
@ -319,7 +319,7 @@ refer to that value by reference. YAML refers to this as "anchoring":
|
|
|
|
```yaml
|
|
|
|
```yaml
|
|
|
|
coffee: "yes, please"
|
|
|
|
coffee: "yes, please"
|
|
|
|
favorite: &favoriteCoffee "Cappucino"
|
|
|
|
favorite: &favoriteCoffee "Cappucino"
|
|
|
|
coffess:
|
|
|
|
coffees:
|
|
|
|
- Latte
|
|
|
|
- Latte
|
|
|
|
- *favoriteCoffee
|
|
|
|
- *favoriteCoffee
|
|
|
|
- Espresso
|
|
|
|
- Espresso
|
|
|
@ -339,7 +339,7 @@ YAML would be:
|
|
|
|
```YAML
|
|
|
|
```YAML
|
|
|
|
coffee: yes, please
|
|
|
|
coffee: yes, please
|
|
|
|
favorite: Cappucino
|
|
|
|
favorite: Cappucino
|
|
|
|
coffess:
|
|
|
|
coffees:
|
|
|
|
- Latte
|
|
|
|
- Latte
|
|
|
|
- Cappucino
|
|
|
|
- Cappucino
|
|
|
|
- Espresso
|
|
|
|
- Espresso
|
|
|
|