Skip to content

Commit

Permalink
Prepare for next clj-kondo release
Browse files Browse the repository at this point in the history
  • Loading branch information
borkdude committed May 12, 2023
1 parent 32e726c commit db61b35
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/quickdoc/impl.clj
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@
(and (not (:no-doc mvar))
(not (:skip-wiki mvar))
(not (:private var))
(not (= 'clojure.core/defrecord (:defined-by var))))))
(not (= 'clojure.core/defrecord (or (:defined-by->lint-as var)
(:defined-by var)))))))

(defn mini-markdown [s]
(str/replace s #"`(.*?)`" (fn [[_ s]]
Expand Down

0 comments on commit db61b35

Please sign in to comment.