Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

JupyterNotebook

import { JupyterNotebook } from "https://git.sr.ht/~ruivieira/deno-experiments/blob/master/jupyter/parse.ts";
class JupyterNotebook {
constructor(
content: JupyterSource,
imageFolder?,
imagePrefix?,
);
private readonly _imageFolder: string;
private _images: {
[key: string]: string;
}
;
private content: JupyterSource;
private readonly imagePrefix: string;
private readonly language: string;
get imageFolder(): string;
get images(): {
[p: string]: string;
}
;
 
render(): string;
}

§Constructors

§
new JupyterNotebook(content: JupyterSource, imageFolder?, imagePrefix?)
[src]

§Properties

§
_imageFolder: string
[src]
§
_images: {
[key: string]: string;
}
[src]
§
content: JupyterSource
[src]
§
imagePrefix: string
[src]
§
language: string
[src]
§
imageFolder: string readonly
[src]
§
images: {
[p: string]: string;
}
readonly
[src]

§Methods

§
render(): string
[src]