diff options
Diffstat (limited to 'src/data')
-rw-r--r-- | src/data/yaml/prne_yaml-test.yaml | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/src/data/yaml/prne_yaml-test.yaml b/src/data/yaml/prne_yaml-test.yaml new file mode 100644 index 0000000..8b8d012 --- /dev/null +++ b/src/data/yaml/prne_yaml-test.yaml @@ -0,0 +1,52 @@ +--- +- + - + - a + - b + - + - 1 + - 2 + - "b" +--- +main-doc: + mapping-0: + apple: fruit + cabbage: veg + orange: fruit + lettuce: veg + mapping-1: + persons: &the_alias + - name: John Doe + email: john.d@example.com + extra-data: + address: | + 137 Example St + Example City EX 0000 + Example Country + vehicles: + - ABC123 + - EXAMPLE + - name: Jane Doe + email: jane.d@example.com + members: *the_alias +--- +override_dot: + a.b: 1 + a: + b: 2 +--- +override_slash: + a/b: 1 + a: + b: 2 +--- +lone_text_scalar +--- +123 +--- +- "root" +- "text" +- "array" +- 3.14 +--- +last-doc: hello |