mirror of
https://github.com/logseq/logseq.git
synced 2026-05-05 03:16:37 +00:00
7 lines
135 B
Clojure
7 lines
135 B
Clojure
(ns frontend.format.protocol)
|
|
|
|
(defprotocol Format
|
|
(toHtml [this content config])
|
|
(loaded? [this])
|
|
(lazyLoad [this ok-handler]))
|