this.saxParser.setFeature("http://cyberneko.org/html/features/override-namespaces", true);
this.saxParser.setFeature("http://cyberneko.org/html/features/insert-namespaces", true);
this.saxParser.setProperty("http://cyberneko.org/html/properties/namespaces-uri",
"http://www.w3.org/1999/xhtml");
} catch (SAXNotRecognizedException e) {
throw new SetupException("Impossible to set property to HTML Parser", e);
} catch (SAXNotSupportedException e) {
throw new SetupException("Property not supported by the HTML Parser", e);
}
}