Fixed aligning tables

pull/178/head
M66B 5 years ago
parent 3425a45e20
commit e84f9b0f09

@ -455,7 +455,7 @@ public class HtmlHelper {
if (text_color)
whitelist.addAttributes("font", "color");
if (text_align)
whitelist.addTags("center").addAttributes(":all", "align");
whitelist.addTags("center");
if (!view)
whitelist.addProtocols("img", "src", "content");
@ -519,11 +519,6 @@ public class HtmlHelper {
style = mergeStyles(style, "text-align:center");
element.tagName("div");
}
// https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes
String align = element.attr("align");
if (!TextUtils.isEmpty(align))
style = mergeStyles(style, "text-align:" + align);
}
// Process style

Loading…
Cancel
Save