UNPKG

stream-chat-react

Version:

React components to create chat conversations or livestream style chat

11 lines (10 loc) 251 B
import { visit } from 'unist-util-visit'; const visitor = (node) => { if (node.type !== 'html') return; node.type = 'text'; }; const transform = (tree) => { visit(tree, visitor); }; export const htmlToTextPlugin = () => transform;