rewrite-clj

https://github.com/clj-commons/rewrite-clj
2019-04-21T00:27:02.084300Z

btw, one of the projects i'm using rewrite-clj in, i'm transforming some information stored in metadata -- there i chose to use namespaced keywords for the metadata so as not to potentially collide with un-namespaced keywords, thinking those perhaps were sort of reserved (e.g. :doc). when i saw :no-doc, i assumed it was an "official" clojure thing. i wonder if whichever documentation projects are using this metadata, have considered putting some namespace prefix on...do you happen to know?

lread 2019-04-21T00:31:39.085400Z

I first saw the syntax in codox, which maybe predates namespaced keywords?

lread 2019-04-21T00:32:06.086100Z

cljdoc makes use of a modified version of codox

2019-04-21T01:10:38.088100Z

thanks for the comment! according to: http://www.deepbluelambda.org/programming/clojure/know-your-keywords by @sattvik > Namespace-qualified keywords have existed since the beginning of Clojure, but they have seen relatively little use. i didn't know about them for years, so perhaps it's possible other folks didn't either?

lread 2019-04-21T01:11:44.088700Z

interesting... yeah maybe.