kjelsrud.dev/node_modules/@astrojs/mdx/dist/rehype-collect-headings.js

13 lines
342 B
JavaScript
Raw Normal View History

2023-07-19 21:31:30 +02:00
import { jsToTreeNode } from "./utils.js";
function rehypeInjectHeadingsExport() {
return function(tree, file) {
const headings = file.data.__astroHeadings || [];
tree.children.unshift(
jsToTreeNode(`export function getHeadings() { return ${JSON.stringify(headings)} }`)
);
};
}
export {
rehypeInjectHeadingsExport
};