kumo.serde.toml_encode_pretty_compact
Since: Dev Builds Only
The functionality described in this section requires a dev build of KumoMTA. You can obtain a dev build by following the instructions in the Installation section.
Attempts to encode VALUE as its TOML equivalent and returns that value serialized as a string, with two layout normalizations applied on top of the default pretty representation:
- Keys are sorted alphabetically at every nesting level so the output is stable and scan-friendly regardless of the order in which the underlying table was constructed.
- Empty tables are emitted inline as
key = {}rather than as a standalone[key]section header.
See also kumo.serde.toml_encode, kumo.serde.toml_encode_pretty, kumo.serde.toml_parse and kumo.serde.toml_load.