toml-tools icon indicating copy to clipboard operation
toml-tools copied to clipboard

Toml Ambiguities

Open bd82 opened this issue 5 years ago • 1 comments

  • Float in key

    [95.22.looks.like.a.float]
    name = "John"
    
  • "[[" vs "[" (Table of Arrays vs Array vs Table vs array with first element another array)

       [[Table.of.arrays]]
       # Array value with first item being a nested array
       items = [[1,2,3], [4,5,6]]
    
    

bd82 avatar Feb 02 '19 12:02 bd82