|
@@ -344,7 +344,7 @@ public class ExportPaperUtil {
|
|
}
|
|
}
|
|
|
|
|
|
private static void getSectionElement(Node ce, List<SectionElement> ses, boolean diposeFillBlank) {
|
|
private static void getSectionElement(Node ce, List<SectionElement> ses, boolean diposeFillBlank) {
|
|
- if ("span".equals(ce.nodeName()) && ce.childNodeSize() > 0) {
|
|
|
|
|
|
+ if (("div".equals(ce.nodeName())||"span".equals(ce.nodeName())) && ce.childNodeSize() > 0) {
|
|
for (Node e : ce.childNodes()) {
|
|
for (Node e : ce.childNodes()) {
|
|
getSectionElement(e, ses, diposeFillBlank);
|
|
getSectionElement(e, ses, diposeFillBlank);
|
|
}
|
|
}
|