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
There are some cells that are required for the .ipynb file to work in development, but shouldn't be shown to the end user. For example, there are some cells that need to have a resources/ directory added to the path variable for imports to work:
# This needs a "hidden" attribute in cell metadata.importos, syscwd=os.getcwd()
resources_path=os.path.join(cwd, 'resources')
ifresources_pathnotinsys.path:
sys.path.append(resources_path)
This kind of cell needs either an invisible tag or cell metadata attribute, so it can be removed when the notebook is converted to html. This is distinct from hidden, which the user can toggle. For example, cell output can be toggled by the user.
The text was updated successfully, but these errors were encountered:
There are some cells that are required for the .ipynb file to work in development, but shouldn't be shown to the end user. For example, there are some cells that need to have a resources/ directory added to the path variable for imports to work:
This kind of cell needs either an
invisible
tag or cell metadata attribute, so it can be removed when the notebook is converted to html. This is distinct fromhidden
, which the user can toggle. For example, cell output can be toggled by the user.The text was updated successfully, but these errors were encountered: