mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 09:42:07 +08:00
41 lines
775 B
JavaScript
41 lines
775 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.whiteList({
|
|
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.whiteList([
|
|
"table",
|
|
"tbody",
|
|
"thead",
|
|
"tr",
|
|
"th",
|
|
"td",
|
|
"div.md-table"
|
|
]);
|
|
}
|