UNPKG

@instructure/quiz-interactions

Version:

A React UI component Library for quiz interaction types.

9 lines (8 loc) 281 B
import sanitizeHtml from 'sanitize-html'; import { allowedTags, allowedAttributes } from './htmlAllowedTags'; export function sanitizeRichContentHtml(value) { return sanitizeHtml(value, { allowedTags: allowedTags, allowedAttributes: allowedAttributes }); }