UNPKG

@jsdevtools/rehype-toc

Version:

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

8 lines (7 loc) 273 B
import { Node } from "unist"; import { NormalizedOptions } from "./options"; import { HeadingNode } from "./types"; /** * Finds all HTML heading nodes (`<h1>` through `<h6>`) */ export declare function findHeadings(node: Node, options: NormalizedOptions): HeadingNode[];