f
Deno.jupyter.broadcast
Broadcast a message on IO pub channel.
```
await Deno.jupyter.broadcast("display_data", {
data: { "text/html": "Processing." },
metadata: {},
transient: { display_id: "progress" }
});
await new Promise((resolve) => setTimeout(resolve, 500));
await Deno.jupyter.broadcast("update_display_data", {
data: { "text/html": "Processing.." },
metadata: {},
transient: { display_id: "progress" }
});
```
f
Deno.jupyter.display
Display function for Jupyter Deno Kernel.
Mimics the behavior of IPython's `display(obj, raw=True)` function to allow
asynchronous displaying of objects in Jupyter.
f
Deno.jupyter.format
Format an object for displaying in Deno
f
Deno.jupyter.html
Show HTML in Jupyter frontends with a tagged template function.
Takes a template string and returns a displayable object for Jupyter frontends.
f
Deno.jupyter.md
Show Markdown in Jupyter frontends with a tagged template function.
Takes a template string and returns a displayable object for Jupyter frontends.
f
Deno.jupyter.svg
SVG Tagged Template Function.
Takes a template string and returns a displayable object for Jupyter frontends.
Example usage:
svg``
I
I
I
Deno.jupyter.MediaBundle
A collection of supported media types and data for Jupyter frontends.
I
N
Deno.jupyter
A namespace containing runtime APIs available in Jupyter notebooks.
When accessed outside of Jupyter notebook context an error will be thrown.
v
Deno.jupyter.$display
No documentation available