RocketChat/Rocket.Chat

View on GitHub
apps/meteor/client/views/marketplace/lib/purifyOptions.ts

Summary

Maintainability
A
0 mins
Test Coverage
export const purifyOptions = {
    ALLOWED_TAGS: [
        'b',
        'i',
        'em',
        'strong',
        'br',
        'p',
        'ul',
        'ol',
        'li',
        'article',
        'aside',
        'figure',
        'section',
        'summary',
        'h1',
        'h2',
        'h3',
        'h4',
        'h5',
        'h6',
        'hgroup',
        'div',
        'hr',
        'span',
        'wbr',
        'abbr',
        'acronym',
        'cite',
        'code',
        'dfn',
        'figcaption',
        'mark',
        's',
        'samp',
        'sub',
        'sup',
        'var',
        'time',
        'q',
        'del',
        'ins',
        'rp',
        'rt',
        'ruby',
        'bdi',
        'bdo',
    ],
};