Files
logseq/src/main/frontend/format/protocol.cljs
Gabriel Horner 1f0e22275d Add ns docstrings for most ns in src/main
- Added to CI now that it passes
- Added no-doc for docstrings that don't add any more than what's in the
ns name or for ones where I didn't know the ns that well
2022-09-27 13:55:16 +08:00

10 lines
293 B
Clojure

(ns ^:no-doc frontend.format.protocol)
(defprotocol Format
(toEdn [this content config])
(toHtml [this content config references])
(loaded? [this])
(lazyLoad [this ok-handler])
(exportMarkdown [this content config references])
(exportOPML [this content config title references]))