mirror of
https://github.com/vale981/emacs-ipython-notebook
synced 2025-03-06 01:21:38 -05:00
ein-cell: Fix slideshow metadata.
Was using wrong name for slide type; should be 'slide_type' not 'slide-type'.
This commit is contained in:
parent
0196407b42
commit
179cec48ae
1 changed files with 1 additions and 1 deletions
|
@ -255,7 +255,7 @@ auto-execution mode flag in the connected buffer is `t'.")))
|
|||
(defun ein:get-slide-show (cell)
|
||||
(let ((slide-type (slot-value cell 'slidetype))
|
||||
(ss-table (make-hash-table)))
|
||||
(setf (gethash 'slide-type ss-table) slide-type)
|
||||
(setf (gethash 'slide_type ss-table) slide-type)
|
||||
ss-table))
|
||||
|
||||
(defun ein:preprocess-nb4-cell (cell-data)
|
||||
|
|
Loading…
Add table
Reference in a new issue