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
Here's a thought: when using the 1-line formatter, as shown in this example, the output appears too dense, especially if we want to format deeper-nested structures.
Example output:
["a","b","c"]
Desired output:
[ "a", "b", "c" ]
When I use a f.Indent = 1, the output looks like this (it is understandable though that this won't produce the desired result):
[ "a", "b", "c"]
Any ideas? Thanks, Martin
The text was updated successfully, but these errors were encountered:
Hi @hokaccha. Thanks for providing this library!
Here's a thought: when using the 1-line formatter, as shown in this example, the output appears too dense, especially if we want to format deeper-nested structures.
Example output:
Desired output:
When I use a
f.Indent = 1
, the output looks like this (it is understandable though that this won't produce the desired result):Any ideas? Thanks, Martin
The text was updated successfully, but these errors were encountered: