htoml icon indicating copy to clipboard operation
htoml copied to clipboard

TOML file format parser in Haskell

Results 6 htoml issues
Sort by recently updated
recently updated
newest added

``` htoml > Building library for htoml-1.0.0.3.. htoml > [1 of 3] Compiling Text.Toml.Types htoml > htoml > /tmp/stack-89f3a8327c6d452d/htoml-1.0.0.3/src/Text/Toml/Types.hs:193:23: error: htoml > • Couldn't match type: HashMap Text Value htoml...

Implemented printing of a toml using pretty printing combinators. Using the printer on the example file produces: ``` > ppTable toml [database] enabled = true ports = [8001, 8001, 8002]...

It would be handy to have a way to serialize an existing Table.

``` toml [[fruit.blah]] name = "apple" [fruit.blah.physical] color = "red" shape = "round" [[fruit.blah]] name = "banana" [fruit.blah.physical] color = "yellow" shape = "bent" ``` From my reading of the...

https://github.com/ambiata/x/blob/master/x-htoml/src/X/Text/Toml.hs