Added support font-weight: bold

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

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

Loading…
Cancel
Save