Skip to main content

md

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

Show Markdown in Jupyter frontends with a tagged template function.

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

Jump to heading

Create a Markdown view.

const { md } = Deno.jupyter;
md`# Notebooks in TypeScript via Deno ![Deno logo](https://github.com/denoland.png?size=32)

* TypeScript ${Deno.version.typescript}
* V8 ${Deno.version.v8}
* Deno ${Deno.version.deno}

Interactive compute with Jupyter _built into Deno_!
`

Parameters Jump to heading

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

Return Type Jump to heading

Back to top