UNPKG

@diplodoc/transform

Version:

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

12 lines (11 loc) 290 B
import type { MarkdownItPluginCb } from './typings'; type CodeOptions = { /** * Show button to toggle line wrapping of code. * @type {boolean} * @default false */ codeLineWrapping?: boolean; }; declare const code: MarkdownItPluginCb<CodeOptions>; export = code;