IOweb/node_modules/@astrojs/mdx/dist/rehype-collect-headings.js
2026-07-03 15:07:38 -05:00

12 lines
342 B
JavaScript

import { jsToTreeNode } from "./utils.js";
function rehypeInjectHeadingsExport() {
return function(tree, file) {
const headings = file.data.astro?.headings ?? [];
tree.children.unshift(
jsToTreeNode(`export function getHeadings() { return ${JSON.stringify(headings)} }`)
);
};
}
export {
rehypeInjectHeadingsExport
};