I'm new to docx4j and struggling with following issue.
In our project we have a template (*.docx) file with text and placeholders. I use the unmarshallFromTemplate function te replace them (Actually we made a local unmarshalFromTemplate that uses the docx4j implementation).
I can replace placeholders in the maindocument, the footers but not the footnotes? Is there a reason for that.
I execute the following code:
if ("/word/footnotes.xml".equals(part.getPartName().getName())) {
FootnotesPart footnotesPart = (FootnotesPart) part;
CTFootnotes ...