New feature: Output is more compact.
When possible and clear, short YAML strings are displayed on the same line as the key (using '
-strings), rather than on the next line (using |
block notation).
Output that contains single-quotes or newlines, or which would make the line it's on exceed 80 characters, will still be displayed with block notation, for clarity.
Before:
program: 'cat'
stderr: ''
input location: |
line 4
output location: |
line 8
error location: |
line 12
program location: |
line 1
After:
program: 'cat'
stderr: ''
input location: 'line 4'
output location: 'line 8'
error location: 'line 12'
program location: 'line 1'