2020-06-30 23:37:06 +02:00
|
|
|
const sanitizeHtml = require('sanitize-html');
|
|
|
|
|
|
|
|
// intended mainly as protection against XSS via import
|
|
|
|
// secondarily it (partly) protects against "CSS takeover"
|
|
|
|
function sanitize(dirtyHtml) {
|
|
|
|
return sanitizeHtml(dirtyHtml, {
|
|
|
|
allowedTags: [
|
2020-11-01 20:38:39 +01:00
|
|
|
'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'blockquote', 'p', 'a', 'ul', 'ol',
|
2020-06-30 23:37:06 +02:00
|
|
|
'li', 'b', 'i', 'strong', 'em', 'strike', 'abbr', 'code', 'hr', 'br', 'div',
|
2020-07-01 23:35:00 +02:00
|
|
|
'table', 'thead', 'caption', 'tbody', 'tr', 'th', 'td', 'pre', 'section', 'img',
|
|
|
|
'figure', 'span', 'label', 'input'
|
2020-06-30 23:37:06 +02:00
|
|
|
],
|
|
|
|
allowedAttributes: {
|
2021-05-25 21:45:59 +02:00
|
|
|
'a': [ 'href', 'class', 'data-note-path' ],
|
2020-06-30 23:37:06 +02:00
|
|
|
'img': [ 'src' ],
|
|
|
|
'section': [ 'class', 'data-note-id' ],
|
|
|
|
'figure': [ 'class' ],
|
|
|
|
'span': [ 'class', 'style' ],
|
|
|
|
'label': [ 'class' ],
|
|
|
|
'input': [ 'class', 'type', 'disabled' ],
|
|
|
|
'code': [ 'class' ]
|
2020-07-27 23:40:14 +02:00
|
|
|
},
|
2020-10-19 22:14:29 +02:00
|
|
|
allowedSchemes: ['http', 'https', 'ftp', 'mailto', 'data', 'evernote']
|
2020-06-30 23:37:06 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
sanitize
|
|
|
|
};
|