}
protected String readContent(VFSLeaf leaf) {
InputStream is = leaf.getInputStream();
// Remove all HTML and Tags
String output = new NekoHTMLFilter().filter(is);
if (log.isDebug() ) log.debug("HTML content without tags :" + output);
FileUtils.closeSafely(is);
return output;
}