Nested record element values that do not immediately begin with a newline character must have a space between the colon (after the key) and the encoded value.
E.g. YAML interprets this as a string:
test:[]
But this as a record containing a single key ("test") with a value being an empty list:
test: []
Closes #32
Checklist:
[x] Added the change to the changelog's "Unreleased" section with a reference to this PR (e.g. "- Made a change (#0000 by @MyGithubTag)")
[x] Linked any existing issues or proposals that this pull request should close
[ ] Updated or added relevant documentation
[x] Added a test for the contribution (if applicable)
Nested record element values that do not immediately begin with a newline character must have a space between the colon (after the key) and the encoded value.
E.g. YAML interprets this as a string:
But this as a record containing a single key ("test") with a value being an empty list:
Closes #32
Checklist: