UNPKG

@promptbook/remote-client

Version:

Promptbook: Turn your company's scattered knowledge into AI ready books

10 lines (9 loc) 406 B
import type { string_markdown_text } from '../../types/typeAliases'; /** * Removes Markdown formatting tags from a string. * * @param {string} str - The string to remove Markdown tags from. * @returns {string} The input string with all Markdown tags removed. * @public exported from `@promptbook/markdown-utils` */ export declare function removeMarkdownFormatting(str: string_markdown_text): string;