protocol.cljs 273 B

123456789
  1. (ns frontend.format.protocol)
  2. (defprotocol Format
  3. (toEdn [this content config])
  4. (toHtml [this content config])
  5. (loaded? [this])
  6. (lazyLoad [this ok-handler])
  7. (exportMarkdown [this content config references])
  8. (exportOPML [this content config title references]))