mkdocs-jupyter
mkdocs-jupyter copied to clipboard
Use Jupyter Notebook in mkdocs
From the docs: Setting `noinput: True` removes the input (as the name implies) and the `Out [...]`. Setting `show_input: false` (without setting `noinput`): In our use case, we would like...
I have a `notebooks` folder where I store my example notebooks, and I would render them in the docs via this package. However, apparently I can only do that if...
The material theme allows to show different images for light and dark color schemes (as explained [here](https://squidfunk.github.io/mkdocs-material/reference/images/#light-and-dark-mode)). Is there a way to use this feature with a matplotlib plot inside...
Mkdocs is inside a docker container. Everything works with multiple plugins, only crash when I try to add mkdocs-jupyter plugin. Any idea? ``` mkdocs | Installing python modules: fontawesome-markdown mkdocs-git-revision-date-localized-plugin...
Hi! I noticed that, if you embed mermaid diagrams in code fences within Markdown cells, then mkdocs-jupyter converts those cells into divs with class 'jp-Mermaid'. I suppose this is due...
As I also explained in https://github.com/mwouts/jupytext/issues/1306#issuecomment-2763639640, the `Plugin.should_include` at https://github.com/danielfrg/mkdocs-jupyter/blob/a3cded5b3a7b14327196c98ffbc7558ce7d267ae/src/mkdocs_jupyter/plugin.py#L60-L86 will attempt to read any `.md` with `jupytext.read`, even if `.md` files are configured to not be included, or to...
It took me quite some time to realize, but I faced the following issue - I have a file called `learning.md` with some code blocks - I manually converted it...
Greetings - trying to get my images to show up in my mkdocs rendered pages. I saw https://github.com/danielfrg/mkdocs-jupyter/issues/53 And I did a little research. It looks like nbconvert has the...
For long output cells (over a certain line length I guess), it would be super neat if these could become scrollable boxes to avoid them taking up too much room...
Mkdocs-jupyter does not support nested pages to be configured in the mkdocs.yml like: ```yml nav: - Home: index.md - Source Code API Reference: - Autoencoder: api/autoencoder.md - Training: api/training.md -...