UNPKG

markdown-it-math

Version:

Markdown-it plugin to include math in your document

11 lines 486 B
export default function markdownItMath(md: import("markdown-it").default, options?: MarkdownItMathOptions | undefined): void; export type ExtraOptions = { /** * - Options passed into the mathup default renderer. */ temmlOptions?: TemmlOptions | undefined; }; export type MarkdownItMathOptions = PluginOptions & ExtraOptions; import type { Options as TemmlOptions } from "temml"; import type { PluginOptions } from "./src/plugin.js"; //# sourceMappingURL=temml.d.ts.map