discourse/app/assets/javascripts/pretty-text/engines/discourse-markdown/table.js
Krzysztof Kotlarek dbec3792b7
FIX: pretty text allow list (#10977)
Reword whitelist to allowlist in pretty-text.
This library is used by plugins so we need deprecation notice.
2020-10-28 13:22:06 +11:00

41 lines
782 B
JavaScript

export function setup(helper) {
helper.registerPlugin((md) => {
md.renderer.rules.table_open = function () {
return '<div class="md-table">\n<table>\n';
};
md.renderer.rules.table_close = function () {
return "</table>\n</div>";
};
});
// we need a custom callback for style handling
helper.allowList({
custom: function (tag, attr, val) {
if (tag !== "th" && tag !== "td") {
return false;
}
if (attr !== "style") {
return false;
}
return (
val === "text-align:right" ||
val === "text-align:left" ||
val === "text-align:center"
);
},
});
helper.allowList([
"table",
"tbody",
"thead",
"tr",
"th",
"td",
"div.md-table",
]);
}