mirror of
https://github.com/logseq/logseq.git
synced 2026-04-27 15:45:00 +00:00
- 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
10 lines
293 B
Clojure
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]))
|