this.parserHandler.foundComment(node.outerHtml());
} else if (node instanceof Element) {
Element enode = (Element) node;
String tagname = enode.tagName();
String text = cleanOutControlChars(enode.text());
String outerHTML = cleanOutControlChars(enode.outerHtml());
String innerHTML = cleanOutControlChars(enode.html());
Attributes attrs = enode.attributes();
Map<String, String> attributeMap = new HashMap<String, String>();
for (Attribute attr : attrs) {
attributeMap.put(attr.getKey(), attr.getValue());