File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -29,4 +29,4 @@ Generate API docs. Options:
2929 * ` :overrides ` - overrides in the form ` {namespace {:no-doc true var {:no-doc true :doc ...}}} ` .
3030
3131 Returns a map containing the generated markdown string under the key ` :markdown ` .
32- <br ><sub >[ source] ( https://github.com/borkdude/quickdoc/blob/main/src/quickdoc/api.cljc#L9-L78 ) </sub >
32+ <br ><sub >[ source] ( https://github.com/borkdude/quickdoc/blob/main/src/quickdoc/api.cljc#L18-L87 ) </sub >
Original file line number Diff line number Diff line change 33 (:require
44 [clojure.string :as str]
55 [quickdoc.impl :as impl]
6- #?(:bb [pod.borkdude.clj-kondo :as clj-kondo ]
6+ #?(:bb [babashka.pods :as pods ]
77 :clj [clj-kondo.core :as clj-kondo])))
88
9+ #?(:bb
10+ (or (requiring-resolve 'pod.borkdude.clj-kondo/run!) ; ; pod is loaded via bb.edn
11+ (pods/load-pod 'clj-kondo/clj-kondo " 2022.09.08" )))
12+
13+ #?(:bb
14+ (require '[pod.borkdude.clj-kondo :as clj-kondo]))
15+
916(defn quickdoc
1017 " Generate API docs. Options:
1118 * `:github/repo` - a link like `https://github.com/borkdude/quickdoc`
You can’t perform that action at this time.
0 commit comments