mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 10:54:22 +08:00
41 lines
771 B
JavaScript
41 lines
771 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(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",
|
|
]);
|
|
}
|