mirror of https://gitee.com/openkylin/nodejs.git
26 lines
676 B
JavaScript
26 lines
676 B
JavaScript
|
import { visit } from 'unist-util-visit';
|
||
|
|
||
|
export const referenceToLocalMdFile = /^(?![+a-z]+:)([^#?]+)\.md(#.+)?$/i;
|
||
|
|
||
|
export function replaceLinks({ filename, linksMapper }) {
|
||
|
return (tree) => {
|
||
|
const fileHtmlUrls = linksMapper[filename];
|
||
|
|
||
|
visit(tree, (node) => {
|
||
|
if (node.url) {
|
||
|
node.url = node.url.replace(
|
||
|
referenceToLocalMdFile,
|
||
|
(_, filename, hash) => `${filename}.html${hash || ''}`,
|
||
|
);
|
||
|
}
|
||
|
});
|
||
|
visit(tree, 'definition', (node) => {
|
||
|
const htmlUrl = fileHtmlUrls && fileHtmlUrls[node.identifier];
|
||
|
|
||
|
if (htmlUrl && typeof htmlUrl === 'string') {
|
||
|
node.url = htmlUrl;
|
||
|
}
|
||
|
});
|
||
|
};
|
||
|
}
|