Added support font-weight: bold

pull/174/head
M66B 5 years ago
parent 5aeca81897
commit 508487190d

@ -375,8 +375,12 @@ public class HtmlHelper {
}
break;
case "background":
case "background-color":
case "font-weight":
if ("bold".equals(value)) {
Element strong = new Element("strong");
element.replaceWith(strong);
strong.appendChild(element);
}
break;
case "line-through":

Loading…
Cancel
Save