UNPKG

@jsdevtools/rehype-toc

Version:

A rehype plugin that adds a table of contents (TOC) to the page

7 lines (6 loc) 293 B
import { NormalizedOptions } from "./options"; import { HeadingNode, HtmlElementNode } from "./types"; /** * Creates a `<nav>` and/or `<ol>` element containing the table of contents. */ export declare function createTOC(headings: HeadingNode[], options: NormalizedOptions): HtmlElementNode;