markdown-to-txt
Version:
Convert markdown to plain text
17 lines (16 loc) • 630 B
TypeScript
import { marked } from "marked";
/**
* Converts markdown to plaintext using the marked Markdown library.
* Accepts [MarkedOptions](https://marked.js.org/using_advanced#options) as
* the second argument.
*
* NOTE: The output of markdownToTxt is NOT sanitized. The output may contain
* valid HTML, JavaScript, etc. Be sure to sanitize if the output is intended
* for web use.
*
* @param markdown the markdown text to txtify
* @param options the marked options
* @returns the unmarked text
*/
export declare function markdownToTxt(markdown: string, options?: marked.MarkedOptions): string;
export default markdownToTxt;