Skip to content

Fix for conditional macros

the code now breaks on conditional reader macros The fix that works for me is to change

(read-string (str "[" (slurp path) "]"))) to (read-string {:read-cond :allow} (str "[" (slurp path) "]"))) in codegraph.core/graph

Edited by gabrielash