export function setup(helper) {
helper.registerPlugin((md) => {
md.renderer.rules.table_open = function () {
return '
\n
\n';
};
md.renderer.rules.table_close = function () {
return "
\n
";
};
});
// 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",
]);
}