Permalink
Cannot retrieve contributors at this time
=== Spec Example 7.14. Flow Sequence Entries | |
--- from: http://www.yaml.org/spec/1.2/spec.html#id2790726 | |
--- tags: spec flow sequence | |
--- in-yaml | |
[ | |
"double | |
quoted", 'single | |
quoted', | |
plain | |
text, [ nested ], | |
single: pair, | |
] | |
--- in-json | |
[ | |
"double quoted", | |
"single quoted", | |
"plain text", | |
[ | |
"nested" | |
], | |
{ | |
"single": "pair" | |
} | |
] | |
--- out-yaml | |
- "double quoted" | |
- 'single quoted' | |
- plain text | |
- - nested | |
- single: pair | |
--- test-event | |
+STR | |
+DOC | |
+SEQ | |
=VAL "double quoted | |
=VAL 'single quoted | |
=VAL :plain text | |
+SEQ | |
=VAL :nested | |
-SEQ | |
+MAP | |
=VAL :single | |
=VAL :pair | |
-MAP | |
-SEQ | |
-DOC | |
-STR |