Font font = new Style().getFont();
// Set default indent with to sufficient space for ordered lists with
// two digits and the default paragraph spacing to 50% of the font height
// (so top and bottom spacing adds up to a full line)
int defaultIndent = font.stringWidth("88. ") * 1000;
int defaultParagraphSpace = Math.max(1, font.getHeight() / 2) * 1000;
put(":link", new Style().set(Style.COLOR, 0x0ff0000ff, Style.ARGB).
set(Style.TEXT_DECORATION, Style.UNDERLINE, Style.ENUM));
put("address", new Style().set(Style.DISPLAY, Style.BLOCK, Style.ENUM));