UNPKG

mdimg

Version:

Covert Markdown or HTML to image

7 lines (6 loc) 400 B
import type { IConvertOptions } from "../interfaces"; declare const spliceHtml: ({ renderedHtml, htmlText, cssText, htmlTemplate, cssTemplate, theme, extensions, log, }: Pick<IConvertOptions, "htmlText" | "cssText" | "htmlTemplate" | "cssTemplate" | "theme" | "extensions" | "log"> & { /** HTML document parsed by Markdown source */ renderedHtml: string; }) => string; export { spliceHtml };