Why
YAML supports a compact, JSON-like inline (flow) form for sequences, but the parser currently only understands the block (multi-line, dash-prefixed) form.
What
ConvertFrom-Yaml should parse inline flow sequences, such as:
skills: ["C#", "PowerShell"]
Acceptance criteria
- A mapping value written as a flow sequence parses to the same result as the equivalent block sequence
Why
YAML supports a compact, JSON-like inline (flow) form for sequences, but the parser currently only understands the block (multi-line, dash-prefixed) form.
What
ConvertFrom-Yamlshould parse inline flow sequences, such as:Acceptance criteria