UNPKG

mdast-util-wiki-link

Version:
14 lines (13 loc) 309 B
interface ToMarkdownOptions { aliasDivider?: string; } declare function toMarkdown(opts?: ToMarkdownOptions): { unsafe: { character: string; inConstruct: string[]; }[]; handlers: { wikiLink: (node: any, _: any, context: any) => string; }; }; export { toMarkdown };