We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
When parsing a list of maps and the last item of an map contains an non bracketed list the next outer list item will be intermixed with the inner one:
- l: - a - l: - b
will result in:
- l: [ a, l: [ b ] ]
instead of
- l: [a] - l: [b]