summaryrefslogtreecommitdiff
path: root/node_modules/yamlparser/tests/example.yml
blob: 8bd9375a96473d68a52b049dd889b18773e0f692 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
---
# Hello World!

chart:    
    - {x: 1993, y: 5}

    - {x: 1994, y: 5}

    - {x: 1995, y: 5}
    
    - {x: 1996, y: 5}

multi-level:
    - array1:
        - 1
        - 2
        - 3
        - 4
        - 5
    - array2: { teste: ah,  bah: 123 }
    - array3:
      - array31:
        - array311: [0, 1, 2, 3]
        
receipt:     Oz-Ware Purchase Invoice # isto é um comentário
date:        2007-08-06
customer:
    given:   Dorothy
    family:  Gale
    pessoa:
        married: false
        money: .NaN
        name: {first: "Diogo", last: "Costa"}
        surname: Costa

items:
    - part_no:   A4786
      descrip:   Water Bucket (Filled)
      price:     1.47
      quantity:  4

    - part_no:   E1628
      descrip:   High Heeled "Ruby" Slippers
      size:       8
      price:     100.27
      quantity:  1

bill-to:  &id001
    street: |
            123 Tornado Alley
            Suite 16
    city:   East Centerville
    state:  KS

ship-to:  *id001
        
specialDelivery:  >
    Follow the Yellow Brick
    Road to the Emerald City.
    Pay no attention to the man 
    behind the curtain.
...