public void inlineToDocx(WordprocessingMLPackage wordPackage, Text text, Object paramValue, Matcher matcher) {
try {
AlternativeFormatInputPart afiPart = new AlternativeFormatInputPart(new PartName("/" + UUID.randomUUID().toString() + ".html"));
afiPart.setBinaryData(paramValue.toString().getBytes());
afiPart.setContentType(new ContentType("text/html"));
Relationship altChunkRel = wordPackage.getMainDocumentPart().addTargetPart(afiPart);
CTAltChunk ac = Context.getWmlObjectFactory().createCTAltChunk();
ac.setId(altChunkRel.getId());
R run = (R) text.getParent();
run.getContent().add(ac);