Skip to content

Instantly share code, notes, and snippets.

@cindywu
Created May 3, 2022 02:54
Show Gist options
  • Save cindywu/4284ac7d05871727e4ed59c5089a7f55 to your computer and use it in GitHub Desktop.
Save cindywu/4284ac7d05871727e4ed59c5089a7f55 to your computer and use it in GitHub Desktop.
htmlToText
export function htmlToText(html: string) {
return html && html.replace(/<[^>]+>/g, '').replace(/&nbsp;/g, ` `) || ''
}
@cindywu
Copy link
Author

cindywu commented May 3, 2022

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment