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
should restore correct behavior. Although to me the entire code block looks like initially it was meant to loop through all lines in the source. Maybe something like the following is more appropriate:
When running jupyter through PyCharm, adding a single line markdown cell with a title produces the following code in the ipynb file:
nbproject
is then unable to detect the notebook title, which consequently makesln.track
fail.Culprit is the following code:
nbproject/nbproject/dev/_meta_live.py
Lines 20 to 27 in c28c19b
Which assumes that
"source"
is a list of lines of text. (PyCharm correctly produces a list of strings for multiline markdown cells)Replacing
text = cell["source"][0]
with:should restore correct behavior. Although to me the entire code block looks like initially it was meant to loop through all lines in the source. Maybe something like the following is more appropriate:
The text was updated successfully, but these errors were encountered: