this example result is right:
---
- apple
- banana
- >
can't you see
the beauty of yaml?
hmm
- dog
result:
[apple, banana, can't you see the beauty of yaml? hmm , dog]
but when i put folded block as first, it was ignored:
---
- >
can't you see
the beauty of yaml?
hmm
- apple
- banana
- dog
result:
[apple, banana, dog]
this behaviour is same for literal blocks (|)
(examples from http://yaml4r.sourceforge.net/cookbook/#folded_block_in_a_sequence\)