-
Notifications
You must be signed in to change notification settings - Fork 51
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
Allow naming cells? #111
Comments
I'd be OK with doing that based on cell metadata. Using comments for this feels like a bit too much magic parsing. |
at least should also use |
3 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Currently, cells are named as
'Cell %d' % cell_num
. This makes it hard to trace errors in case you have hundreds of cells.Could the cells be possibly named? Either via cell metadata (given it's already supported anyway), or via inline comments, like
# nbval: name = 'cell_name'
, or just# nbval: cell_name
.To enforce uniqueness, cell number can still be kept, so the output could look e.g. like this:
The text was updated successfully, but these errors were encountered: