borkdude/jet

add an option to supress "," in output ?

behrica opened this issue · 4 comments

I prefer EDN without commas, especially for copy/paste into Clojure files.

@behrica What is the Clojure option to suppress comma's? I've never encountered this before.

@behrica Would it be sufficient for you to install the additional puget CLI?

See https://github.com/borkdude/puget-cli

$ echo '{:a 1 :b 2}' | jet --from edn | puget --opts '{:map-delimiter ""}'
{:a 1 :b 2}

yes, I did not know about the puget cli.
We can close.

Thanks.