UNPKG

@diplodoc/transform

Version:

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

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