mdast utility to generate table of contents.
This package is ESM only:
Node 12+ is needed to use it and it must be import
ed instead of require
d.
npm:
npm install mdast-util-toc
Dependencies:
/** @typedef {import('mdast').Root} Root */
import {u} from 'unist-builder'
import {toc} from 'mdast-util-toc'
Now running:
const tree = /** @type {Root} */ (
u('root', [
u('heading', {depth: 1}, [u('text', 'Alpha')]),
u('heading', {depth: 2}, [u('text', 'Bravo')]),
u('heading', {depth: 3}, [u('text', 'Charlie')]),
u('heading', {depth: 2}, [u('text', 'Delta')])
])
)
const table = toc(tree)
Yields:
{
index: null,
endIndex: null,
map: {
type: 'list',
ordered: false,
spread: true,
children: [ { type: 'listItem', spread: true, children: [Array] } ]
}
}
This package exports the following identifiers: toc
.
There is no default export.
Generate a Table of Contents from a tree.
Looks for the first heading matching options.heading
(case insensitive),
and returns a table of contents (list) for all following headings.
If no heading
is specified, creates a table of contents for all headings in
tree
.
tree
is not changed.
Links to headings are based on GitHub’s style.
Only top-level headings (those not in blockquotes or lists), are used.
This default behavior can be changed by passing parents
.
Heading to look for (string
), wrapped in new RegExp('^(' + value + ')$', 'i')
.
Maximum heading depth to include in the table of contents (number
, default:
6
),
This is inclusive: when set to 3
, level three headings are included (those
with three hashes, ###
).
Headings to skip (string
, optional), wrapped in
new RegExp('^(' + value + ')$', 'i')
.
Any heading matching this expression will not be present in the table of
contents.
Whether to compile list-items tightly (boolean?
, default: false
).
Whether to compile list-items as an ordered list (boolean?
, default: false
).
Add a prefix to links to headings in the table of contents (string?
,
default: null
).
Useful for example when later going from mdast to hast and sanitizing
with hast-util-sanitize
.
Allows headings to be children of certain node types (default: the to toc
given tree
, to only allow top-level headings).
Internally, uses unist-util-is to check, so parents
can be any
is
-compatible test.
For example, this would allow headings under either root
or blockquote
to be
used:
toc(tree, {parents: ['root', 'blockquote']})
An object representing the table of contents.
index
(number?
) — Index of the node right after the table of contents heading.-1
if no heading was found,null
if noheading
was givenendIndex
(number?
) — Index of the first node afterheading
that is not part of its section.-1
if no heading was found,null
if noheading
was given, same asindex
if there are no nodes betweenheading
and the first heading in the TOCmap
(Node?
) — List representing the generated table of contents.null
if no table of contents could be created, either because no heading was found or because no following headings were found
Use of mdast-util-toc
does not involve hast, user content, or
change the tree, so there are no openings for cross-site scripting (XSS)
attacks.
Injecting map
into the syntax tree may open you up to XSS attacks as existing
nodes are copied into the table of contents.
The following example shows how an existing script is copied into the table of
contents.
For the following Markdown:
# Alpha
## Bravo<script>alert(1)</script>
## Charlie
Yields in map
:
- [Alpha](#alpha)
- [Bravo<script>alert(1)</script>](#bravoscriptalert1script)
- [Charlie](#charlie)
Always use hast-util-santize
when transforming to
hast.
github-slugger
— Generate a slug just like GitHub doesunist-util-visit
— visit nodesunist-util-visit-parents
— likevisit
, but with a stack of parents
See contributing.md
in syntax-tree/.github
for ways to get
started.
See support.md
for ways to get help.
This project has a code of conduct. By interacting with this repository, organization, or community you agree to abide by its terms.