I want to perform some minor manipulations to a docx document and I want to insert a page break of type= "page" on the place of a certain variable. The document xml is prepared correctly and I have the variable in the ${pagebreak} format.
My script looks like this:
- Code: Select all
File templateZip = new File("resources/doctest.docx")
WordprocessingMLPackage template = WordprocessingMLPackage.load(templateZip)
def map = ["pagebreak": "<w:r><w:br w:type=\"page\"/></w:r>"]
template.mainDocumentPart.variableReplace(map)
At the last line however, I receive the following ...