quinnj / JSON3.jl

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Less verbose pretty()

lbilli opened this issue Β· comments

Great addition the new pretty printing feature! πŸ‘

Is is possible to mute the str = "..." messages?
It looks like they have mainly a debugging purpose.

julia> JSON3.pretty(JSON3.write([1,2]))
str = "[1,2]"
[
  str = "1"
1,
  str = "2"
2
]

Oops! How embarrassing! Fixed in bda1550