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
|
# This is an example document which exercises all of the properties of
# the marked YAML parser. It covers scalars, mappings, and sequences, and
# verifies that everything which *ought* to be supported is.
simple: scalar
boolean1: "true"
boolean2: false
integer: "1234"
float: 12.34
nullvalue: null
mapping:
nesting: is
quite:
quite: possible
plainsequence:
- simple
- values
- are
- supported
heterogenous:
- multiple
- types: of
- [values, are supported]
- { such: as, these: values }
|