UNPKG

@diplodoc/transform

Version:

A simple transformer of text in YFM (Yandex Flavored Markdown) to HTML

9 lines (8 loc) 294 B
import { MarkdownItPluginOpts } from '../typings'; declare type Options = MarkdownItPluginOpts & { destPath: string; copyFile: (path: string, dest: string) => void; singlePage: boolean; }; declare const collect: (input: string, options: Options) => string | null; export = collect;