dsql-admin/dsql-app/package-shared/functions/backend/html/sanitizeHtmlOptions.js
2024-11-05 12:12:42 +01:00

13 lines
410 B
JavaScript
Executable File

// @ts-check
const sanitizeHtmlOptions = {
allowedTags: ["b", "i", "em", "strong", "a", "p", "span", "ul", "ol", "li", "h1", "h2", "h3", "h4", "h5", "h6", "img", "div", "button", "pre", "code", "br"],
allowedAttributes: {
a: ["href"],
img: ["src", "alt", "width", "height", "class", "style"],
"*": ["style", "class"],
},
};
module.exports = sanitizeHtmlOptions;