}
if (textColor != null) {
sb.append("color:").append(textColor).append(";");
}
FontUnderline fontUnderline = format.getFontUnderline();
boolean striketThrough = format.isFontStrikethrough();
if (!striketThrough && fontUnderline != null) {
if (fontUnderline.equals(FontUnderline.SINGLE) || fontUnderline.equals(FontUnderline.SINGLEA)) {
sb.append("text-decoration:").append("underline;");
} else if (fontUnderline.equals(FontUnderline.DOUBLE) || fontUnderline.equals(FontUnderline.DOUBLEA)) {
}
}
if (striketThrough) {