You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The latest version of nbformat>=5.7.0 emits a message when a notebook has no cell ids.
I'd like to see what we could do about that. Maybe I'd prefer not to include the cell ids in the text notebooks by default, but we could still give an option to do so.
Also, pandoc>=2.7 does support cell ids, but Jupytext currently filters out the cell ids when saving to a text format , we should think about that.
Other possibilities would be
generate simple ids (like: unnamed_code_cell_1) for cells that don't have one, and ignore the ids that matches the pattern when we write the text version of the notebook
save the non trivial ids as the 'title' of the cell
The text was updated successfully, but these errors were encountered:
The latest version of
nbformat>=5.7.0
emits a message when a notebook has no cell ids.I'd like to see what we could do about that. Maybe I'd prefer not to include the cell ids in the text notebooks by default, but we could still give an option to do so.
Also,
pandoc>=2.7
does support cell ids, but Jupytext currently filters out the cell ids when saving to a text format , we should think about that.Other possibilities would be
unnamed_code_cell_1
) for cells that don't have one, and ignore the ids that matches the pattern when we write the text version of the notebookThe text was updated successfully, but these errors were encountered: