| 62 | | accomplishment: > # Folded style, introduced by > |
|---|
| 63 | | Mark set a major league # Each line break is folded to a space |
|---|
| 64 | | home run record in 1998. # Makes YAML more readable |
|---|
| 65 | | stats: | # Literal style, introduced by | |
|---|
| 66 | | 65 Home Runs # All line breaks count |
|---|
| 67 | | 0.278 Batting Average # Indentation doesn't appear in the resulting string |
|---|
| | 62 | # Folded style, introduced by > |
|---|
| | 63 | # Each line break is folded to a space |
|---|
| | 64 | # Makes YAML more readable |
|---|
| | 65 | accomplishment: > |
|---|
| | 66 | Mark set a major league |
|---|
| | 67 | home run record in 1998. |
|---|
| | 68 | |
|---|
| | 69 | # Literal style, introduced by | |
|---|
| | 70 | # All line breaks count |
|---|
| | 71 | # Indentation doesn't appear in the resulting string |
|---|
| | 72 | stats: | |
|---|
| | 73 | 65 Home Runs |
|---|
| | 74 | 0.278 Batting Average |
|---|