@promptbook/remote-client
Version:
Promptbook: Turn your company's scattered knowledge into AI ready books
14 lines (13 loc) • 458 B
TypeScript
import type { string_markdown_text } from '../../types/typeAliases';
/**
* Function escapeMarkdownBlock will escape markdown block if needed
* It is useful when you want have block in block
*
* Note: [🔂] This function is idempotent.
*
* @public exported from `@promptbook/markdown-utils`
*/
export declare function escapeMarkdownBlock(value: string_markdown_text): string_markdown_text;
/**
* TODO: [🏛] This can be part of markdown builder
*/