So i've been trying to understand how to use docx4j but have had a lot of trouble getting the basics to work. I eventually found the online web app to generate the code. It created the document but theres always spaces after each paragraph. How do I get rid of them? I have docx4j 3.0.0
My main method calls this:
private static WordprocessingMLPackage createTestDocument(WordprocessingMLPackage wordMLPackage) {
try {
wordMLPackage = new WordprocessingMLPackage();
Document newDocument ...