mirror of
https://github.com/logseq/logseq.git
synced 2026-04-30 00:46:23 +00:00
8 lines
167 B
Clojure
8 lines
167 B
Clojure
(ns frontend.format.protocol)
|
|
|
|
(defprotocol Format
|
|
(toEdn [this content config])
|
|
(toHtml [this content config])
|
|
(loaded? [this])
|
|
(lazyLoad [this ok-handler]))
|