YAML 101
Last updated
PeopleBlock:
- John
- Mike
- Tom
- Jake
PeopleFlow: [John, Mike, Tom, Jake]Dave:
Age: 25
GPA: 4.2
Occupation: Engineer
State: 'New Jersey'
About: "I'm a software engineer"
Score: null
Male: true
DateOfBirth: 1990-09-15T19:07:00Personnel:
- Dave:
Age: 24
Occupation: Engineer
State: CA
- Mike:
Age: 30
Occupation: Manager
State: TX
- John:
Age: 40
Occupation: Designer
State: WAPersonnel:
- Dave:
Age: 24
Occupation: Engineer
State: CA
Degrees:
- Bachelor
- Masters
- PHD
- Mike:
Age: 30
Occupation: Manager
State: TX
Degrees: [Bachelor, Masters]
- John:
Age: 40
Occupation: Designer
State: WA
Degrees:
- MastersResource:
Name: My resource
Description: |
This is a description,
with new lines and | special symbols
Prop: valueResource:
Name: My resource
Description: >
This is a description,
with new lines and | special symbols
Will render everything as a single line
Prop: value# resource definition
Resource:
Name: My resourceMyAnchor: &a
Prop1: value1
Prop2: value2
AnotherPlace:
<<: *a
Prop3: value3