@geogirafe/lib-geoportal
Version:
GeoGirafe is a flexible application to build online geoportals.
13 lines (12 loc) • 430 B
JavaScript
export const defaultNewsSanitizeConfig = {
USE_PROFILES: { html: true },
FORBID_TAGS: ['style', 'script', 'iframe', 'object', 'embed'],
FORBID_ATTR: ['style', 'onerror', 'onload', 'onclick']
};
export const defaultPermalinkSanitizeConfig = {
ALLOWED_TAGS: ['br', 'b', 'div', 'em', 'i', 'p', 'strong'],
ALLOWED_ATTR: []
};
export const defaultQuerySanitizeConfig = {
ALLOWED_TAGS: ['iframe', 'a', 'img']
};