Is there an "easy" way to link from an article to an element of the api? Can you use [[...]] in a article's Markdown file?
Here's what I do in next.jdbc's markdown: [next.jdbc/get-datasource](
In Getting Started:
> Note: You can see the full list of :dbtype values supported in https://cljdoc.org/d/com.github.seancorfield/next.jdbc/CURRENT/api/next.jdbc#get-datasource's docstring. If you need this programmatically, you can get it from the https://cljdoc.org/d/com.github.seancorfield/next.jdbc/CURRENT/api/next.jdbc.connection#dbtypes hash map. If those lists differ, the hash map is the definitive list (and I'll need to fix the docstring!). The docstring of that Var explains how to tell next.jdbc about additional databases.
No, wikilink syntax [[..]] is only supported in docstrings. I think you are an adoc user? Here's the kind of thing I do: https://github.com/clj-commons/rewrite-clj/blob/422b9dc2ae703a9dbf2d591d5b08e59676da705a/doc/01-user-guide.adoc?plain=1#L4 for https://github.com/clj-commons/rewrite-clj/blob/422b9dc2ae703a9dbf2d591d5b08e59676da705a/doc/01-user-guide.adoc?plain=1#L567.
Here's the https://github.com/cljdoc/cljdoc/blob/master/doc/userguide/for-library-authors.adoc#link-to-api-docs.