To help debug processing errors, I would suggest the following enhancement to the class org.dbdoclet.trafo.internal.html.docbook.editor.BrEditor (line 58):
DocBookElementparent;
try {
parent = (DocBookElement) getCurrent().getParentNode();
} catch (ClassCastExceptionex) {
logger.error("Failed processing node, current node text content is: " +
getCurrent().getTextContent());
throwex;
}
if (parent != null) {
Parapara = dbfactory.createPara();
parent.appendChild(para);
setParent(para);
setCurrent(para);
}
Best regards,
Pierre Sion
The text was updated successfully, but these errors were encountered:
pierre-sion commentedJun 25, 2014
Hello Michael,
To help debug processing errors, I would suggest the following enhancement to the class org.dbdoclet.trafo.internal.html.docbook.editor.BrEditor (line 58):
Best regards,
Pierre Sion
The text was updated successfully, but these errors were encountered: