blob: fae3f432fd2501469565e44e46825e687bc21a31 (
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
|
%YAML 1.1
---
- name: spec-07-09
yaml: |
---
foo
...
# Repeated end marker.
...
---
bar
# No end marker.
---
baz
...
tree: |
+STR
+DOC ---
=VAL :foo
-DOC ...
+DOC ---
=VAL :bar
-DOC
+DOC ---
=VAL :baz
-DOC ...
-STR
- name: spec-07-09-canonical
yaml: |
%YAML 1.1
---
!!str "foo"
---
!!str "bar"
---
!!str "baz"
tree: |
+STR
+DOC ---
=VAL <tag:yaml.org,2002:str> "foo
-DOC
+DOC ---
=VAL <tag:yaml.org,2002:str> "bar
-DOC
+DOC ---
=VAL <tag:yaml.org,2002:str> "baz
-DOC
-STR
|