@gptp/core
Version:
Library to supercharge your use of large language models
14 lines (13 loc) • 456 B
TypeScript
import { MarkdownStructure } from './MarkdownStructure';
/**
* Parse a markdown string into a MarkdownStructure object.
*
* Note: This function does work with code blocks
* Note: This function does not work with markdown comments
*
* @param markdown The markdown string to parse.
* @returns The MarkdownStructure object.
*
* @private within the library
*/
export declare function markdownToMarkdownStructure(markdown: string): MarkdownStructure;