Format, prettify, align, whatever you want to call it. This does that to YAML. Great for making long config files more readable!
Reformats this:
one: two
three: four
seventeen: five
to this:
one: two
three: four
seventeen: five
or this:
one : two
three : four
seventeen: five
Pass a string to align(str). This is important! Read in the YAML as a string, DON'T PARSE IT.
Translated to Python from https://github.com/jonschlinkert/align-yaml