julia> JSON.parse("{\"a\":\"b\\/c\"}")
Dict{String,Any} with 1 entry:
"a" => "b/c"
but
julia> JSONTables.jsontable("{\"a\":\"b\\/c\"}")
JSONTables.Table{true,JSON3.Object{Base.CodeUnits{UInt8,String},Array{UInt64,1}}}(Error showing value of type JSONTables.Table{true,JSON3.Object{Base.CodeUnits{UInt8,String},Array{UInt64,1}}}:
ERROR: ArgumentError: encountered invalid escape character in json string: "b\/c"
(it would be great to get it fixed and tagged, in mid August I am running a workshop in which I will use JSON files containing such escapes).
\/
escape is not handled correctly I think. E.g.but
(it would be great to get it fixed and tagged, in mid August I am running a workshop in which I will use JSON files containing such escapes).
Thank you!