// call next handler if no filtering
if (completelyFiltered == 0) {
// special handling of text:h, that are directly passed
// to xhtml handler
if (TEXT_NS.equals(namespaceURI) && "h".equals(localName)) {
xhtml.startElement(headingStack.push(
getXHTMLHeaderTagName(atts)));
} else {
super.startElement(
namespaceURI, localName, qName, atts);
}