Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/deno/cli/tsc/dts/lib.deno.unstable.d.ts>Deno.jupyter.html

A modern runtime for JavaScript and TypeScript.
Latest
function Deno.jupyter.html
import { Deno } from "https://deno.land/x/deno@v1.41.0/cli/tsc/dts/lib.deno.unstable.d.ts";
const { html } = Deno.jupyter;

Show HTML in Jupyter frontends with a tagged template function.

Takes a template string and returns a displayable object for Jupyter frontends.

Examples

Create an HTML view.

const { html } = Deno.jupyter;
html`<h1>Hello, world!</h1>`

Parameters

strings: TemplateStringsArray
...values: unknown[]