**Describe the bug** Multiline strings (or block scalars) are not preserved when they have trailing white space. They are converted to quoted strings. version of yq: 3.3.4 operating system: Linux Mint 19 **Input Yaml** ```yaml this: | should really work ``` **Command** The command you ran: ``` yq merge data.yml ``` **Actual behavior** ```yaml this: "should \nreally work\n" ``` **Expected behavior** ```yaml this: | should really work ```