MyST-NB
MyST-NB copied to clipboard
Parse and execute ipynb files in Sphinx
### Describe the bug Currently, the right sidebar is overlapping with video content, as can be seen here: ### Reproduce the bug paste these two cells into a Jupyter notebook...
### Context Hidden cells are great to keep the notebook concise. But they also reduce code accessibility, and the click-to-reveal interaction requires lots of clicking when there are multiple cells...
### Describe the bug There's a feature in Jupyter markdown cells, that one can simply paste an image into a cell, and it will automatically be attached and rendered. Bug:...
### Context nbsphinx has great cell numbering, as can be seen in this screenshot. ### Proposal It would be amazing if there was an option for cell numbering for myst-nb...
### Describe the bug **context** I added `myst-nb` to an existing documentation that includes a `.ipynb` file and invoke `make html`. **expectation** A neat result. **bug** But instead 🐛`UnboundLocalError`🐛 happens...
### Describe the bug **context** When writing a code cell, there is an optional value *(don't know what to properly call it)* `ipython3` here ````python ```{code-cell} ipython3 print("Hello!") ``` ````...
### Context A new sphinx version was released and the tests in https://github.com/pydata/pydata-sphinx-theme/pull/1097 are still using the old one as they rely on myst-nb. Not sure if I see all...
### TL;TR We've found that links to headers that work when working from within Jupyter Notebook/Lab no longer work when on a page built from the same notebook with MyST-NB....
### Describe the bug Unless I missed it I do not think it is possible to configure the `myst_nb.docutils_` when used to include a notebook in another document via the...
### Context I'm trying to do a little custom rendering on the first cell in each notebook. I want to use the cell metadata to add some extra elements. My...