kjelsrud.dev/node_modules/@astrojs/mdx/dist/rehype-collect-headings.js
2023-07-19 21:31:30 +02:00

12 lines
342 B
JavaScript

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
};