import DOMPurify from 'dompurify' export const sanitizeHtml = (html) => { return DOMPurify.sanitize(html, { ALLOWED_TAGS: ['b', 'i', 'em', 'strong', 'a', 'p', 'br', 'ul', 'ol', 'li', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'blockquote', 'code', 'pre', 'img'], ALLOWED_ATTR: ['href', 'title', 'src', 'alt'] }) } export const sanitizeText = (text) => { return DOMPurify.sanitize(text, { ALLOWED_TAGS: [] }) }