I am not clear about the relationship between all these read-string functions. Well, it is clear that clojure.core/read-string can read any serialized string th
clojure.core/read-string
Actually, it is possible to register custom tag parser via cljs.reader/register-tag-parser!
for a record I have it looks like this: (register-tag-parser! (s/replace (pr-str m/M1) "/" ".") m/map->M1)
(register-tag-parser! (s/replace (pr-str m/M1) "/" ".") m/map->M1)
@Gary — quite nice answer