UNPKG

@awesome-fe/translate

Version:
9 lines (8 loc) 439 B
import { VFileCompatible } from 'unified'; import { Node } from 'unist'; export declare function markdownParse(markdown: VFileCompatible): Node; export declare function markdownStringify(tree: Node): string; export declare function markdownToHtml(ast: Node): string; export declare function markdownFromHtml(html: string): Node; export declare function mdToHtml(md: string): string; export declare function htmlToMd(html: string): string;