mirror of https://github.com/calzoneman/sync.git
Merge remote-tracking branch 'upstream/3.0' into polltime
This commit is contained in:
commit
c3cd84f7af
|
@ -5,6 +5,7 @@ var sanitizeHTML = require("sanitize-html");
|
||||||
const ALLOWED_TAGS = [
|
const ALLOWED_TAGS = [
|
||||||
"button",
|
"button",
|
||||||
"center",
|
"center",
|
||||||
|
"cite"
|
||||||
"details",
|
"details",
|
||||||
"font",
|
"font",
|
||||||
"h1",
|
"h1",
|
||||||
|
@ -13,8 +14,12 @@ const ALLOWED_TAGS = [
|
||||||
"marquee", // It pains me to do this, but a lot of people use it...
|
"marquee", // It pains me to do this, but a lot of people use it...
|
||||||
"s",
|
"s",
|
||||||
"section",
|
"section",
|
||||||
|
"small",
|
||||||
"span",
|
"span",
|
||||||
"summary"
|
"sub",
|
||||||
|
"summary",
|
||||||
|
"sup",
|
||||||
|
"template"
|
||||||
];
|
];
|
||||||
|
|
||||||
const ALLOWED_ATTRIBUTES = [
|
const ALLOWED_ATTRIBUTES = [
|
||||||
|
|
Loading…
Reference in New Issue