documentation
Version:
a documentation generator
22 lines (20 loc) • 499 B
JavaScript
import { visit } from 'unist-util-visit';
/**
* Reroute inline jsdoc links in documentation
* @param getHref a method that resolves namespaces
* @param ast remark AST
* @returns {Object} that ast with rerouted links
* @private
*/
export default function rerouteLinks(getHref, ast) {
visit(ast, 'link', function (node) {
if (
node.jsdoc &&
!node.url.match(/^(http|https|\.)/) &&
getHref(node.url)
) {
node.url = getHref(node.url);
}
});
return ast;
}