*/
private ExtractionReport detectAndExtract(String in) throws Exception {
Any23 any23 = new Any23();
ByteArrayOutputStream out = new ByteArrayOutputStream();
ReportingTripleHandler outputHandler = new ReportingTripleHandler(
new IgnoreAccidentalRDFa(new IgnoreTitlesOfEmptyDocuments(
new NTriplesWriter(out))));
return any23.extract(in, "http://host.com/path", outputHandler);
}