UNPKG

@diplodoc/transform

Version:

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

8 lines (7 loc) 187 B
declare type Options = { root: string; path: string; singlePage: boolean; }; declare const collect: (input: string, options: Options) => string | undefined; export = collect;