Closed dreid closed 9 months ago
Per TOML v1.0.0
A bare key must be non-empty, but an empty quoted key is allowed (though discouraged).
Currently, TomlRB will parse:
[foo] "" = "bar"
as
{"foo"=>{""=>"bar"}}
However it dumps the above as:
[foo] = "bar"
Which is invalid TOML that it (rightly) refuses to parse again.
Per TOML v1.0.0
Currently, TomlRB will parse:
as
However it dumps the above as:
Which is invalid TOML that it (rightly) refuses to parse again.