stream-chat-react
Version:
React components to create chat conversations or livestream style chat
9 lines (8 loc) • 323 B
TypeScript
import type { Plugin } from 'unified';
import type { Root } from 'mdast';
/**
* Replace the parsed Markdown tree with a single paragraph containing the
* original source as a plain text node. No Markdown formatting is interpreted.
* React will escape it.
*/
export declare const remarkIgnoreMarkdown: Plugin<[], Root>;