xhtml.characters(run.toString());
// If we have any pictures, output them
for(XWPFPicture picture : run.getEmbeddedPictures()) {
if(paragraph.getDocument() != null) {
XWPFPictureData data = picture.getPictureData();
if(data != null) {
AttributesImpl attr = new AttributesImpl();
attr.addAttribute("", "src", "src", "CDATA", "embedded:" + data.getFileName());
attr.addAttribute("", "alt", "alt", "CDATA", picture.getDescription());
xhtml.startElement("img", attr);
xhtml.endElement("img");
}