You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I admit that this may be against the JSON standard rules, but for me it would be very nice if the AlignmentContext with JSON3.pretty() output can allow me to customize printing out the arrays in rows rather than in columns, i.e., instead of:
"a": [
1,
2,
3
]
it will output: "a": [ 1, 2, 3 ]
I believe it is sufficient to just remove "\n" in pretty.jl in that choice.
The text was updated successfully, but these errors were encountered:
I admit that this may be against the JSON standard rules, but for me it would be very nice if the AlignmentContext with JSON3.pretty() output can allow me to customize printing out the arrays in rows rather than in columns, i.e., instead of:
"a": [
1,
2,
3
]
it will output:
"a": [ 1, 2, 3 ]
I believe it is sufficient to just remove "\n" in pretty.jl in that choice.
The text was updated successfully, but these errors were encountered: