UNPKG

remark-inline-links

Version:

remark plugin to transform references and definitions into normal links and images

9 lines (8 loc) 217 B
/** * Turn references and definitions into normal links and images. * * @returns * Transform. */ export default function remarkInlineLinks(): (tree: Root) => undefined; export type Root = import('mdast').Root;