Results 311 comments of Martin Klepsch

Hi Joel! [Specs do exist](https://github.com/cljdoc/cljdoc/blob/1eaaac904b275ebe581f1775a3c4b5bb44e43bdd/src/cljdoc/doc_tree.clk) but I maybe they are lacking in one way or another. Definitely happy about improvements in this regard. I also remember that there was some...

I still can't find it but I created this issue now: https://github.com/cljdoc/cljdoc/issues/363 — it's a little brief right now so let me know if that is sufficient or if parts...

This seems to be the exception causing this error: ``` Caused by: java.lang.UnsupportedOperationException: count not supported on this type: Symbol at clojure.lang.RT.countFrom(RT.java:671) at clojure.lang.RT.count(RT.java:643) at clojure.core$count.invokeStatic(core.clj:880) at clojure.core$count.invoke(core.clj:874) at clojure.core$sort_by$fn__5978.invoke(core.clj:3131)...

@ikitommi and other bystanders: The issue with regenerating documentation is that documents might get updated in between breaking versions causing differences between articles and API... eventually harming the experience of...

@sveri this could work but it would require walking git revisions to find the last file that is for a given version. Also what happens if release `0.4.0` while my...

Agree there are two cases and that for SNAPSHOTs it's much more straightforward. That said I haven't really focused on supporting SNAPSHOTs and I think they mostly don't work at...

@ikitommi -SNAPSHOTs are supported now: https://cljdoc.xyz/d/metosin/reitit/0.1.2-SNAPSHOT/doc/introduction/

This issue is about non-SNAPSHOT builds for which the problem still exists. I’m not sure about the right path to a solution but I’d like to keep it open for...

```clj (defn patch-level-info ;; Non API documentation should be updated with new Git revisions, ;; not only once tagged releases are published to Clojars ;; Some versioning scheme is required...

### A Quick Summary cljdoc tries very hard that API docs and articles are "in sync", meaning that you don't see Articles that refer to unreleased APIs or similar. It...