UNPKG

@diplodoc/transform

Version:

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

11 lines (10 loc) 341 B
import { MarkdownItPluginCb } from '../typings'; interface Options { extractTitle?: boolean; supportGithubAnchors?: boolean; disableCommonAnchors?: boolean; transformLink: (v: string) => string; getPublicPath?: (options: Options, v?: string) => string; } declare const index: MarkdownItPluginCb<Options>; export = index;