saphyr-serde/parser/tests/yaml-test-suite/src/A984.yaml
2024-10-12 16:15:46 +02:00

29 lines
348 B
YAML

---
- name: Multiline Scalar in Mapping
from: NimYAML tests
tags: scalar
yaml: |
a: b
c
d:
e
f
tree: |
+STR
+DOC
+MAP
=VAL :a
=VAL :b c
=VAL :d
=VAL :e f
-MAP
-DOC
-STR
json: |
{
"a": "b c",
"d": "e f"
}
dump: |
a: b c
d: e f