jonbio/lib/remark-toc-headings.js

14 lines
370 B
JavaScript
Raw Normal View History

2021-08-14 23:11:18 +08:00
import { visit } from 'unist-util-visit'
import { slug } from 'github-slugger'
2021-08-06 22:13:30 +08:00
2021-08-14 23:11:18 +08:00
export default function remarkTocHeadings(options) {
2021-08-06 22:13:30 +08:00
return (tree) =>
visit(tree, 'heading', (node, index, parent) => {
options.exportRef.push({
value: node.children[0].value,
url: '#' + slug(node.children[0].value),
2021-08-06 22:13:30 +08:00
depth: node.depth,
})
})
}