Small improvement

pull/198/head
M66B 4 years ago
parent 405b7ec4d6
commit d3fbca7b74

@ -458,9 +458,9 @@ public class HtmlHelper {
for (Element font : document.select("font")) { for (Element font : document.select("font")) {
// https://developer.mozilla.org/en-US/docs/Web/HTML/Element/font // https://developer.mozilla.org/en-US/docs/Web/HTML/Element/font
String style = font.attr("style"); String style = font.attr("style");
String color = font.attr("color"); String color = font.attr("color").trim();
String size = font.attr("size"); String size = font.attr("size").trim();
String face = font.attr("face"); String face = font.attr("face").trim();
style = style.trim(); style = style.trim();
if (!TextUtils.isEmpty(style) && !style.endsWith(";")) if (!TextUtils.isEmpty(style) && !style.endsWith(";"))

Loading…
Cancel
Save