UNPKG

@diplodoc/transform

Version:

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

9 lines (8 loc) 327 B
import { GetFileTokensOpts } from '../../utilsFS'; import { MarkdownItPluginCb, MarkdownItPluginOpts } from '../typings'; declare type Options = MarkdownItPluginOpts & GetFileTokensOpts & { notFoundCb: (v: string) => void; noReplaceInclude: boolean; }; declare const index: MarkdownItPluginCb<Options>; export = index;