This currently gets parsed correctly: ```yaml foo: | bar baz ``` ^ Parsed as `bar\nbaz`. However this (a simpler case) doesn't (`failed to classify line` error on the second line): ```yaml foo: bar baz ``` ^ Should be parsed as `bar baz`. Would it be hard to also support the second case?