UNPKG
v-md-editor
Version:
latest (1.0.6)
1.0.6
A markdown editor built on Vue
v-md-editor
/
src
/
utils
/
xss
/
common.js
11 lines
(8 loc)
•
247 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
export
const
attrWhiteList = [
'style'
,
'align'
,
'class'
,
'id'
,
'title'
];
export
const
prefixAttrWhiteList = [
'data-'
];
export
const
tags = {
input
: [
'type'
],
ol
: [
'reversed'
,
'start'
,
'type'
],
button
: [
'type'
],
summary
: [], };