UNPKG

md-curcuma

Version:

A Typescript library for transporting and converting markdown and other data.

15 lines (14 loc) 481 B
export interface MD_FileContent_Interface { frontmatter: string; frontmatter_attributes: any; body_array: string[]; index: number; } export declare class MD_FileContent implements MD_FileContent_Interface { frontmatter: string; frontmatter_attributes: any; body_array: string[]; index: number; static split_frontmatter_body(content: string): MD_FileContent_Interface; static merge_frontmatter_body(mdfc: MD_FileContent_Interface): string; }