toml-lang / toml

Tom's Obvious, Minimal Language
https://toml.io
MIT License
19.45k stars 847 forks source link

Allow `:` for assignment inside inline tables #901

Closed lizelive closed 2 years ago

lizelive commented 2 years ago
hello = { world : 42 }

should be equivalent to

hello = { world = 42 }

this synergies with #516 and #902 to make all json objects that don't include null valid toml.

pros:

  1. paste json
  2. easier to move over to toml
  3. more choice
  4. more readable
pradyunsg commented 2 years ago

make all json objects that don't include null valid toml.

This isn't a goal.