private void fontStyle()

in thumbnails4j-xlsx/src/main/java/co/elastic/thumbnails4j/xlsx/XlsxToHtmlSerializer.java [211:220]


    private void fontStyle(Formatter html, CellStyle style){
        Font font = workbook.getFontAt(style.getFontIndexAsInt());
        if (font.getBold()){
            html.format("  font-weight: bold;%n");
        }
        if (font.getItalic()){
            html.format("   font-style: italic;%n");
        }
        html.format("  font-size: %dpt;%n", font.getFontHeightInPoints());
    }