mirror of
https://github.com/vale981/emacs-ipython-notebook
synced 2025-03-05 09:01:40 -05:00
Prefer text mime type over html and latex
This commit is contained in:
parent
1c41b77e5c
commit
79ac2cb24e
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue