0.0.1 • Published 1 year ago
@cicara/toc v0.0.1
@cicara/toc
Help generate a table of contents for articles.
pnpm add @cicara/tocimport { TOC } from "@cicara/toc";
const toc = new TOC({
selector: "h2, h3",
container: document.querySelector<HTMLDivElement>("#article")!,
});
const elements = toc.getElements();
// emit when a section is active
toc.addEventListener("toc:active", (event) => {
console.log(event.detail.element);
});0.0.1
1 year ago