You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now (#1736), the middleware has See Also information only for clojure.core.
But it would be good to be able to show the links for all namespaces. Parsing the docstring and generating links from there is one way to do it. So, the docstring would look something like,
Returns a lazy sequence of the items in coll for which
(pred item) returns true. pred must be free of side-effects.
Returns a transducer when no collection is provided.
See also: `clojure.core/remove', `clojure.core/keep', `user-ns/user-fn'
So we just need to collect all the ``'` pairs and replace them with buttons which would lookup the corresponding documentation.
Right now (#1736), the middleware has
See Also
information only forclojure.core
.But it would be good to be able to show the links for all namespaces. Parsing the docstring and generating links from there is one way to do it. So, the docstring would look something like,
So we just need to collect all the ``'` pairs and replace them with buttons which would lookup the corresponding documentation.
Relevant discussion here
The text was updated successfully, but these errors were encountered: