Closed monkeydom closed 6 years ago
as e.g. used in redox toml files
🚫 Input TOML could not be parsed Value must follow after a '=' at line 13 12: #binutils = {} ➤ 13: contain = {} 14: coreutils = {}
Simplest example:
[foo] bar = {}
echo -e "[foo]\n bar = {}" | ./tomlutil - 🚫 Input TOML could not be parsed Value must follow after a '=' at line 2 1: [foo] ➤ 2: bar = {}
Should be fixed with your PR now.
as e.g. used in redox toml files
Simplest example: