In YAML, you can easily create multi-line strings. However, I would like the ability to create a multi-line array (mainly for readibility within config files) using the
If what you are needing is an array of arrays, you can do this way:
key: - [ 'value11', 'value12', 'value13' ] - [ 'value21', 'value22', 'value23' ]