UNPKG

@diplodoc/transform

Version:

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

9 lines (8 loc) 270 B
export declare function removeIndentBlock(str: string): string; declare type Opts = { content: string; tagStartPos: number; tagContent: string; }; export declare function getPreparedLeftContent({ content, tagStartPos, tagContent }: Opts): string; export {};