More emacs work.

This commit is contained in:
John Doty 2016-12-12 07:20:04 -08:00
parent 8f378d3b35
commit 2d92526d24
6 changed files with 253 additions and 144 deletions

View file

@ -29,4 +29,24 @@
(let ((new-quip-id (org-quip-publish-quip content)))
(org-quip-put-thread-identifier new-quip-id)))))
;;
;; Org-to-quip filter:
;;
;; So, Quip HTML is a very specific, strict subset of HTML. Quip has only a
;; few different block types, and it can't do certain things (like
;; multi-paragraph list items.)
;;
;; Structure:
;; - A list of top-level items:
;;
;; Headlines: <h1> <h2> <h3>
;; Block quotes: <blockquote>
;; Code block: <pre>
;;
;; <h3>
;;
;;
(provide 'ox-quip)