<<<<<<<<<<<<<<<<<<<<<<<<<
YAML
MULTILINE https://yaml-multiline.info/
---
defaults: &defaults
A: 1
B: 2
mapping:
<< : *defaults
A: 23
C: 99
# same as:
mapping:
B: 2
A: 23
C: 99
---
invoice:
billing address: &address1
name: Santa Clause
street: Santa Claus Lane
city: North Pole
shipping address: *address1
--- !clarkevans.com/^invoice
invoice: 34843
date : 2001-01-23
bill-to: &id001
given : Chris
family : Dumars
address:
lines: |
458 Walkman Dr.
Suite #292
city : Royal Oak
state : MI
postal : 48046
ship-to: *id001
product:
- sku : BL394D
quantity : 4
description : Basketball
price : 450.00
- sku : BL4438H
quantity : 1
description : Super Hoop
price : 2392.00
tax : 251.42
total: 4443.52
comments: >
Late afternoon is best.
Backup contact is Nancy
Billsmer @ 338-4338.
=========================
YAML
MULTILINE https://yaml-multiline.info/
--- defaults: &defaults A: 1 B: 2 mapping: << : *defaults A: 23 C: 99 # same as: mapping: B: 2 A: 23 C: 99
--- invoice: billing address: &address1 name: Santa Clause street: Santa Claus Lane city: North Pole shipping address: *address1
--- !clarkevans.com/^invoice invoice: 34843 date : 2001-01-23 bill-to: &id001 given : Chris family : Dumars address: lines: | 458 Walkman Dr. Suite #292 city : Royal Oak state : MI postal : 48046 ship-to: *id001 product: - sku : BL394D quantity : 4 description : Basketball price : 450.00 - sku : BL4438H quantity : 1 description : Super Hoop price : 2392.00 tax : 251.42 total: 4443.52 comments: > Late afternoon is best. Backup contact is Nancy Billsmer @ 338-4338.
>>>>>>>>>>>>>>>>>>>>>>>>>
