@promptbook/vercel
Version:
Promptbook: Turn your company's scattered knowledge into AI ready books
12 lines (11 loc) • 394 B
TypeScript
/**
* Removes Markdown link 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 removeMarkdownLinks(str: string): string;
/**
* @see https://chat.openai.com/chat/bb7c3a5b-fe9c-4ccc-9057-f47e0fd66489
*/