@metablock/notebook
v0.26.8
Published
Metablock Notebook
Downloads
32
Readme
Metablock Notebook
A library for rendering markdown, math, code, editing, executing code inline, and much more!
Usage
import { Notebook } from "@metablock/notebook";
const el = document.querySelector("body");
const markdown_text = `
# Title
This is an example notebook.
`;
const notebook = new Notebook();
notebook.render(markdown_text, el);