pantoniou / libfyaml

Fully feature complete YAML parser and emitter, supporting the latest YAML spec and passing the full YAML testsuite.
MIT License
239 stars 73 forks source link

indentation for array elements #77

Open cruisercoder opened 1 year ago

cruisercoder commented 1 year ago

Please add the ability to specify an indent specifically for array elements in the emitter. The current output is this:

key:
- a: 1
- b: 2

Many prefer the readability of arrays like this:

key:
  - a: 1
  - b: 2