-
Notifications
You must be signed in to change notification settings - Fork 293
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
weird commas appered in the notebook editor #2939
Comments
Hmm. I'm not reproing this. Perhaps your version of jupyter is giving back different output than mine. What do you get for |
@rchiodo I ran into this bug as well, on version 6.0.0 of Jupyter notebooks, and on public october build using this notebook: https://gist.github.com/jmew/93c5573429e689b867a32579d2bf6281 |
Can you try upgrading jupyter?
I have version 6.0.1. I just ran your notebook with the released bits and I don't get the commas. If you can still repro it with 6.0.1, then we might have to debug it on your machine @jmew |
Actually here's my full jupyter output:
|
Investigate how the commas go there, might be from saving from JupyterLab |
@rchiodo My nb is |
Okay this seems to be a difference in how text/html is saved by jupyter and by us Here's a cell from jupyter:
Here's the same cell after we render it:
|
Looks like the jupyter version is an nbformat.MultilineString where as ours is a plain string. We need to collapse the multiline string. |
Validated |
nb.zip
The text was updated successfully, but these errors were encountered: