Say I have an edn file like this:
{:name :some-name
:some-key #my/data-reader-fn [1 2 3]}
Now say I want to change the content of :name
programatically.
If I read the edn file, the data-reader-fn will be applied, and so if I want to write my changes to the edn file, :some-key
will be changed too.
Is there a workaround for this problem?