UNPKG

@subsocial/utils

Version:
8 lines (7 loc) 443 B
declare type ProccesMdFn = (md?: string) => string; export declare const buildMdToEntity: (processMd: ProccesMdFn) => (md?: string | undefined) => string | undefined; /** Convert text in markdown format to plain text */ export declare const mdToText: (md?: string | undefined) => string | undefined; /** Convert text in markdown format to html text */ export declare const mdToHtml: (md?: string | undefined) => string | undefined; export {};