}
protected void parseWord6(
NPOIFSFileSystem filesystem, XHTMLContentHandler xhtml)
throws IOException, SAXException, TikaException {
HWPFOldDocument doc = new HWPFOldDocument(filesystem.getRoot());
Word6Extractor extractor = new Word6Extractor(doc);
for(String p : extractor.getParagraphText()) {
xhtml.element("p", p);
}