I am trying to convert the attached pdf-document. On page 14, you can find the paragrap "Paragraf 7 er en saksbehandlingsregel om begrunnelsesplikt som supplerer saksbehand-
lingsreglene i forvaltningsloven."
The word "saksbehandlingsregel" is in italic.
The word is gone from the html-version.
com.aspose.pdf.Document doc = new com.aspose.pdf.Document(file.getAbsolutePath());
com.aspose.pdf.HtmlSaveOptions saveOptions = new com.aspose.pdf.HtmlSaveOptions();
File tmpFile = File.createTempFile("foo", "html");
saveOptions.setFixedLayout(false);
doc.save(tmpFile.getAbsolutePath(), saveOptions);