Demo of a JupyterLab Deck presentation#
Things mostly work! But There are still things that do not work!
Important
The new
jupyterlab_mystfeature to have a clickable checklist doesn’t seem to work in a markdown file (but it probably works in a JupyterLab notebook)Find a way to set
[overrides.json](https://jupyterlab.readthedocs.io/en/stable/user/directories.html#overrides-json)so the jupyterlab-deck starts in slide mode.Fix the annoying “JupyterLab Code Formatter” error! (need to disable the extension on JupyterLite)
Find a way to configure the environment so I can tell it what python packages to start with
Add some styling elements to the
jupyterlitedirective so the width and the height can be controlled.Export the
jupyterlab-deckto a PDF or to HTML.
First attempt: “Native”#
Here’s what it looks like with just the jupyterlite directive.
The code is:
```{jupyterlite} notebook.ipynb
:width: 100%
:height: 600px
:prompt: Try JupyterLite!
```
and the result is:
Second attempt: “Using iFrame”#
Here’s what it looks like if I steal the iframe code from the jupyterlab-deck docs.
Slightly hacky.
The code is:
<iframe
src="./lite/lab/index.html?path=notebook.ipynb"
style="width: 99%; border: solid 1px #999; height: 500px">
</iframe>
And the result is:
Third attempt:#
Coming soon…. will try it when things get set up with JupyterLite.