Skip to main content

html

function Deno.jupyter.html
unstable
Jump to headinghtml(
strings: TemplateStringsArray,
...values: unknown[],
): Displayable

Show HTML in Jupyter frontends with a tagged template function.

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

Jump to heading

Create an HTML view.

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

Parameters Jump to heading

Jump to headingstrings: TemplateStringsArray
Jump to heading<span>...values</span>: unknown[]

Return Type Jump to heading

Back to top