0.47.0
-
New: it is now possible to emit lists indented, rather than aligned with their parent (#317 - thanks to @Cloudate9 for the PR)
For example, previously, kaml would produce output like this:
list: - 1 - 2 - 3
With this change, if you set the newly added
sequenceBlockIndent
property onYamlConfiguration
to 2, the output would be: (notice the extra indentation for the list items)list: - 1 - 2 - 3
-
Updated: build against Kotlin 1.7.10.