Hi there,
I have a child document which I'm testing the merging of into a parent document using the following 3 methods:
1. Add child to parent as an AltChunk of type AltChunkType.WordprocessingML using the addAltChunk(...) method
e.g.
parentDocument.getMainDocumentPart().addAltChunk(AltChunkType.WordprocessingML, new FileInputStream(inputFilePath));
parentDocument.getMainDocumentPart().convertAltChunks();
2. Add child to parent as an AltChunk of type AltChunkType.Xhtml using the addAltChunk(...) method
e.g.
parentDocument.getMainDocumentPart().addAltChunk(AltChunkType.Xhtml, childDocumentAsXHTMLDocument);
parentDocument.getMainDocumentPart().convertAltChunks();
3. Add child to parent using the XHTMLImporter.convert(...) method passing in the exported child ...