1
0
mirror of https://github.com/zadam/trilium.git synced 2025-03-01 14:22:32 +01:00

don't strip evernote links during import,

This commit is contained in:
zadam 2020-10-19 22:14:29 +02:00
parent c2b64bad80
commit 0cb46f8f9b

@ -21,7 +21,7 @@ function sanitize(dirtyHtml) {
'input': [ 'class', 'type', 'disabled' ], 'input': [ 'class', 'type', 'disabled' ],
'code': [ 'class' ] 'code': [ 'class' ]
}, },
allowedSchemes: ['http', 'https', 'ftp', 'mailto', 'data'] allowedSchemes: ['http', 'https', 'ftp', 'mailto', 'data', 'evernote']
}); });
} }