UNPKG

markdown-it-math

Version:

Markdown-it plugin to include math in your document

15 lines 550 B
export default function markdownItMath(md: import("markdown-it"), options?: MarkdownItMathOptions): void; export type PluginOptions = import("./src/plugin.js").PluginOptions; export type MathupOptions = any; export type ExtraOptions = { /** * - DEPRICATED: use mathupOptions. */ defaultRendererOptions?: MathupOptions; /** * - Options passed into the mathup default renderer. */ mathupOptions?: MathupOptions; }; export type MarkdownItMathOptions = PluginOptions & ExtraOptions; //# sourceMappingURL=index.d.ts.map