in src/main/java/org/apache/cxf/cwiki/SiteExporter.java [800:810]
protected String loadPageContent(Page p, String divId, String divCls) throws Exception {
String content = renderPage(p);
content = updateContentLinks(p, content, divId,
divCls == null && divId == null ? mainDivClass : divCls);
if (divId == null) {
p.setContent(content);
} else {
p.setContentForDivId(divId, content);
}
return content;
}