Hello
I have tried to generate a pdf document with a docx document.
My code
File xdcocFile = new File(pathDocumentWord);
WordprocessingMLPackage wordMLPackage = WordprocessingMLPackage.load(xdcocFile);
OutputStream out = new java.io.FileOutputStream(pathDocumentPDF);
Docx4J.toPDF(wordMLPackage,out);
The code works but the generated pdf doesn´t have the carriage returns that the docx have.
Can somebody help me
Thanks for your attention . Regards.