-
-
Notifications
You must be signed in to change notification settings - Fork 42
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add an option to supress "," in output ? #94
Comments
@behrica What is the Clojure option to suppress comma's? I've never encountered this before. |
It is available in the puget (https://github.com/greglook/puget) pretty printer. |
@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. Thanks. |
I prefer EDN without commas, especially for copy/paste into Clojure files.
The text was updated successfully, but these errors were encountered: