Skip to content

Commit

Permalink
Merge pull request #23 from pedromanoel/main
Browse files Browse the repository at this point in the history
Allow reading custom reader macros from EDN input
  • Loading branch information
markus-wa authored Feb 13, 2024
2 parents 1c15975 + a2089eb commit ece71ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cq/formats.clj
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
(defn ->edn-reader
[_]
(fn [in]
(edn/read (PushbackReader. (io/reader in)))))
(edn/read {:default tagged-literal} (PushbackReader. (io/reader in)))))

(defn ->edn-writer
[{:keys [pretty color]}]
Expand Down

0 comments on commit ece71ca

Please sign in to comment.