Hi I just started using docx4java and I am incredibly impressed. I had a quick question I was hoping someone could help answer. I am trying to add new lines and tabs into an existing Word Document but I am having some problems. Here is my code:
wordMLPackage.getMainDocumentPart().addParagraphOfText("\t\t\t\t\tTesting Tabs");
wordMLPackage.getMainDocumentPart().addParagraphOfText("Testing \n\n newlines");
The problem is when I open my Word doc it doesn't seem to recognize this. Can someone please help? Thanks!