I am using docx4j API's to generate a docx. I am programmatically inserting HTML code in the docx at a given index.
The issue which I am facing is that I want to use 'o.table footnote' style for the paragraph which contains the HTML.
- Code: Select all
Relationship altChunkRel1 = documentTemplate.getMainDocumentPart().addTargetPart(DocumentUtil.showHtml((new String(section.getSectionNotes().toCharArray())), index));
CTAltChunk ac1 = Context.getWmlObjectFactory().createCTAltChunk();
ac1.setId(altChunkRel1.getId());
documentTemplate.getMainDocumentPart().getContent().add(index, ac1);
and method DocumentUtil.showHtml is as follows
public static AlternativeFormatInputPart showHtml(String notes, int index) { ...