A library for rendering markdown, math, code, editing, executing code inline, and much more!
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);