UNPKG

markdown-it-pikchr

Version:
8 lines (7 loc) 295 B
import type MarkdownIt from "markdown-it"; import { PikchrResultType } from "pikchr"; interface PikchrPluginOptions { render_f: (result: PikchrResultType) => string; } declare const PikchrPlugin: (md: MarkdownIt, opts?: PikchrPluginOptions | undefined) => void; export default PikchrPlugin;