Skip to content

Commit

Permalink
fix for pageBreakBefore (issue #1028)
Browse files Browse the repository at this point in the history
  • Loading branch information
liborm85 committed Jun 1, 2017
1 parent e0e4e13 commit 51c237a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/docPreprocessor.js
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,9 @@ DocPreprocessor.prototype.preprocessTable = function (node) {
if (data === null) { // transform to object
data = '';
}

rowData[col] = this.preprocessNode(data);
if (!data._span) {
rowData[col] = this.preprocessNode(data);
}
}
}
}
Expand Down

0 comments on commit 51c237a

Please sign in to comment.