mirador
Version:
An open-source, web-based 'multi-up' viewer that supports zoom-pan-rotate functionality, ability to display/compare simple images, and images with annotations.
29 lines (23 loc) • 630 B
JavaScript
// Only remove security related tags and attributes. Allow each other.
const liberal = {};
// No html at all. Only text will remain.
const noHtml = {
ALLOWED_TAGS: [],
};
// Presentation API 2 suggestion.
const iiif = {
ALLOWED_ATTR: ['href', 'src', 'alt'],
ALLOWED_TAGS: ['a', 'b', 'br', 'i', 'img', 'p', 'span'],
};
// Rule set that is used in Mirador 2.
const mirador2 = {
ALLOWED_ATTR: ['href', 'target', 'src', 'alt', 'dir'],
ALLOWED_TAGS: ['a', 'b', 'br', 'i', 'img', 'p', 'span', 'strong', 'em', 'ul', 'ol', 'li'],
};
const htmlRules = {
iiif,
liberal,
mirador2,
noHtml,
};
export default htmlRules;