if (striketThrough) {
sb.append("text-decoration:").append("line-through;");
}
FontStyle fontStyle = format.getFontStyle();
if (fontStyle != null) {
if (fontStyle.equals(FontStyle.BOLDITALIC)) {
sb.append("font-weight:").append("bold;");
sb.append("font-style:").append("italic;");
} else if (fontStyle.equals(FontStyle.ITALIC)) {
sb.append("font-style:").append("italic;");
} else if (fontStyle.equals(FontStyle.BOLD)) {
sb.append("font-weight:").append("bold;");
}
}
int fontSize = format.getFontSize();