pretty package:tomland

Converts TOML type into Text (using defaultOptions). For example, this
TOML
{ tomlPairs  = HashMap.fromList
[("title", AnyValue $ Text "TOML example")]
, tomlTables = PrefixTree.fromList
[( "example" <| "owner"
, mempty
{ tomlPairs  = HashMap.fromList
[("name", AnyValue $ Text Kowainik)]
}
)]
, tomlTableArrays = mempty
}
will be translated to this
title = "TOML Example"

[example.owner]
name = "Kowainik"
Converts TomlBiMapError into pretty human-readable text.
Converts TomlDecodeError into pretty human-readable text.
Converts TomlDecodeErrors into pretty human-readable text.
Converts a key to text
Converts TOML type into Text using provided PrintOptions
Pretty-print a ParseErrorBundle. All ParseErrors in the bundle will be pretty-printed in order together with the corresponding offending lines by doing a single pass over the input stream. The rendered String always ends with a newline.