Home | History | Annotate | Download | only in pyyaml
      1 ---
      2 scalars:
      3   plain: !!str some text
      4   quoted:
      5     single: 'some text'
      6     double: "some text"
      7 collections:
      8   sequence: !!seq [ !!str entry,
      9     # Mapping entry:
     10       key: value ]
     11   mapping: { key: value }
     12