UNPKG

@diplodoc/transform

Version:

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

10 lines (9 loc) 330 B
export declare function length(input: string): number; export declare function capitalize(input: string): string; export declare function escapeMarkdown(input: string): string; declare const index: { length: typeof length; capitalize: typeof capitalize; escapeMarkdown: typeof escapeMarkdown; }; export default index;