-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cell edits are ignored upon executing or rendering #48
Comments
I've been looking into this issue and am hoping to get pointed in the right direction. As a disclaimer, I'm new to JupyterLab extensions so my terminology could be very off. Environment:
Here is what I found so far: For example if I create a notebook with a single empty cell, open it in RISE, change the cell's contents to
Which seems to indicate the notebook the slides are generated from is not listening to changes in cell content or the cells themselves do not recognize when their content changes, which may be the case as the However if I add a new cell, delete, or split a cell, and then save, the original notebook will show that change. I tried commenting out all of the code that turns a NotebookPanel into a Reveal slideshow in I thought maybe the RISE server extension, but it seems there weren't any major differences between the 0.3.x branch (which appears to not have this issue with JupyterLab 3.6.6) and the main branch in terms of the server extension. I did notice this error in the console which may or may not be relevant:
Thanks! |
Description
When editing a cell in slides mode, the edits appear in edit mode but are ignored upon
rendering (for a markdown cell) or execution (for a code cell)
Reproduce
41+1
(or any other value that wasn't already there)Expected: 42 appears as output
Obtained: the previous output is displayed
Foo
in a markdown cell (or any other text that wasn't already there)Expected: Foo appears in the rendered cell
Obtained: the previous content of the cell is rendered
Context
The text was updated successfully, but these errors were encountered: