@mintlify/scraping
Version:
Scrape documentation frameworks to Mintlify docs
18 lines (15 loc) • 473 B
text/typescript
import type { Root as HastRoot } from 'hast';
import { visit, CONTINUE } from 'unist-util-visit';
export function removeHastComments(root: HastRoot): void {
visit(root, 'comment', function (_, index, parent) {
if (parent && typeof index === 'number') {
parent.children.splice(index, 1);
return [CONTINUE, index];
}
});
}
export function rehypeRemoveHastComments() {
return function (root: HastRoot) {
return removeHastComments(root);
};
}