Skip to content

Latest commit

 

History

History
38 lines (26 loc) · 1.14 KB

for-users.md

File metadata and controls

38 lines (26 loc) · 1.14 KB

cljdoc for Library Users

Finding Documentation

To find documentation use the search field on the cljdoc homepage or navigate to documentation directly by entering the appropriate URL.

URLs are formed like this:

# https://cljdoc.org/d/$group_id/$artifact_id/$version
https://cljdoc.org/d/ring/ring-core/1.6.0

If we haven't built documentation for the requested project yet you'll see a page with a button to trigger a build. Builds usually don't take longer than 1-2 minutes.

Offline Docs

cljdoc allows users to download bundles of documentation for offline use. To do so just navigate to

# https://cljdoc.org/download/$group_id/$artifact_id/$version
https://cljdoc.org/download/reagent/reagent/0.8.1

or download the bundle using curl (note the -OJ flags):

curl -OJ https://cljdoc.org/download/reagent/reagent/0.8.1

Also see the Docsets page for more information.

Integrated support for offline documentation browsers - Dash for MacOS can already download cljdoc bundles and support for other tools such as Zeal is underway.