JuliaIO / JSON.jl

JSON parsing and printing
Other
311 stars 100 forks source link

Comment support #343

Open jmigual opened 2 years ago

jmigual commented 2 years ago

It would be nice if comments in json files would be supported so a file like this:

{
    // We choose this awesome value
     "a": "value for key A"
}

Would generate a dictionary like:

Dict("a" => "value for key A")

Alternatively we could support the JSON5 standard