@mdfriday/foundry
Version:
The core engine of MDFriday. Convert Markdown and shortcodes into fully themed static sites – Hugo-style, powered by TypeScript.
13 lines (12 loc) • 315 B
TypeScript
import MarkdownIt from 'markdown-it';
export interface WikilinkMeta {
isEmbed: boolean;
filepath: string;
anchor: string;
alias?: string | undefined;
url: string;
}
export declare function wikilinkPlugin(md: MarkdownIt, options?: {
enable?: boolean;
}): void;
export default wikilinkPlugin;