Prefer text mime type over html and latex

This commit is contained in:
Takafumi Arakaki 2012-05-08 05:04:24 +02:00
parent 1c41b77e5c
commit 79ac2cb24e

View file

@ -318,7 +318,7 @@ A specific note can be specified using INDEX."
(defun ein:cell-append-mime-type (json dynamic)
(loop
for key in '(javascript html latex svg png jpeg text)
for key in '(javascript svg png jpeg text html latex)
for type = (intern (format ":%s" key)) ; something like `:text'
for value = (plist-get json type) ; FIXME: optimize
when (plist-member json type)