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

27 lines
365 B
YAML

---
- name: Comment in flow sequence before comma
from: '@perlpunk'
tags: comment flow sequence
yaml: |
---
[ word1
# comment
, word2]
tree: |
+STR
+DOC ---
+SEQ []
=VAL :word1
=VAL :word2
-SEQ
-DOC
-STR
json: |
[
"word1",
"word2"
]
dump: |
---
- word1
- word2