YAML supports multi-line strings

YAML supports multi-line strings. You can wrap text like this:

query: >
    SELECT group, SUM(*) FROM table
    WHERE column > value
    GROUP BY group
    ORDER BY group DESC

This is more readable than:

query: SELECT group, SUM(*) FROM table WHERE column > value GROUP BY group ORDER BY group DESC