-
Notifications
You must be signed in to change notification settings - Fork 130
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
Feature request: hide execution count #671
Comments
You should hide the execution count via CSS, see https://nbsphinx.readthedocs.io/en/0.8.9/custom-css.html#For-a-Single-Notebook. But what I'm more concerned about is the unintended line break in your first code cell. |
Theme is the master branch of https://github.com/pytorch/pytorch_sphinx_theme, browser is Chrome. |
Thanks @adamjstewart, this seems to happen only on Either way, I think #675 should fix this. Did you manage to remove your prompts? BTW, the PyTorch theme is quite bad, most notably because of blown up images (which you have already reported in pytorch/pytorch_sphinx_theme#140) leading to work-arounds like https://github.com/microsoft/torchgeo/blob/main/docs/_static/workaround.css. But there are many more minor ugly things going on. |
This is also present in our docs for TorchGeo 0.1.1, which was released in December 2021, so the bug has existed for at least that long.
Worked like a charm! microsoft/torchgeo#783
Yeah... I wish it was better maintained. There seems to be a fork that is actually maintained, may move to that someday. Trying to stick to the same theme as the rest of the PyTorch ecosystem if possible. I'm aware of many more bugs (microsoft/torchgeo#101) but don't have the expertise to fix them myself. |
I'm closing this as resolved, because prompts should be removed via CSS. |
When rendering notebooks, nbsphinx includes the
execution_count
of each cell like so:Here, the
execution_count
of the first cell is null, while the second is 6. These execution counts are useful in Jupyter Notebook as they allow you to see the history of which cells you ran in which order. However, they aren't particularly useful in documentation where you just want to document a feature, present some code, and display the output. Can we add a feature that allows users to optionally hide the execution count of each cell during rendering?The text was updated successfully, but these errors were encountered: