htmlToPlainText.js 134 B

12345
  1. import { convert } from "html-to-text"
  2. export default function htmlToPlainText(html) {
  3. return convert(html, { wordwrap: false })
  4. }