mkdocs-jupyter icon indicating copy to clipboard operation
mkdocs-jupyter copied to clipboard

Use Jupyter Notebook in mkdocs

Results 63 mkdocs-jupyter issues
Sort by recently updated
recently updated
newest added

Added the option to define a custom mathjax URL. Not sure if all the modifications are really necessary in the code, please check! It also works with the privacy plugin...

Hi, I want to use mkdocs-jupyter with locally hosted MathJax (mkdocs-material +privacy plugin). Unfortunately, nbconvert implicitly sets `mathjax_url`. In the template, which is part of mkdocs-jupyter (mkdocs_html → `{{ mathjax(resources.mathjax_url)...

Getting: ```python File "/opt/hostedtoolcache/Python/3.8.18/x64/lib/python3.8/site-packages/mkdocs_jupyter/convert.py", line 1, in from nbconvert.filters.markdown_mistune import IPythonRenderer File "/opt/hostedtoolcache/Python/3.8.18/x64/lib/python3.8/site-packages/nbconvert/__init__.py", line 5, in from .exporters import * File "/opt/hostedtoolcache/Python/3.8.18/x64/lib/python3.8/site-packages/nbconvert/exporters/__init__.py", line 1, in from .asciidoc import ASCIIDocExporter File...

Jupyterlab v4 switched from mathjax v3 to v4, see https://github.com/jupyterlab/jupyterlab/pull/13877. This should be reflected in mkdocs-jupyter, too. Related: https://github.com/jupyter/nbconvert/issues/1706

Under 0.24.7 I get HTML source with: ```html ``` under 0.24.8 I get: ```html ``` I assume something is interacting with the custom mathjax change in 0.24.8. For now I'm...

This is related to #181, which itself has some links to other issues. I am wondering if it is possible to hide output in a similar fashion to this: ```...

In markdown files, the navigation and/or table of contents sidebars can be hidden for a document with the front matter `hide` property [xref](https://squidfunk.github.io/mkdocs-material/setup/setting-up-navigation/?h=hide#hiding-the-sidebars) ``` --- hide: - toc --- ```...

Since some of the output cells can be quite long, the MKDocs-Material search results can be _very_ lengthy when including rendered notebooks. Is there already some way to inject markdown...

Hi team, I am seeing a few warnings similar to below: ``` [WARNING] Div at /tmp/tmpno_7m2er line 3 column 1 unclosed at /tmp/tmpno_7m2er line 19 column 1, closing implicitly. ```...

When I reference something from my API documentation, I'd expect this to work even inside jupyter notebooks as it does inside normal mkdocs pages with the mkdocstrings plugin. For example,...