StrictStyledDOMHelper helper = new StrictStyledDOMHelper(null);
String result;
final Document doc = domFactory.createDocument();
NodeSequence contents = buffer.removeContents();
contents.forEach(new NodeIteratee() {
public IterationAction next(Node node) {
doc.addNode(node);
return IterationAction.CONTINUE;
}
});