We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ca702c commit 116d0edCopy full SHA for 116d0ed
lib/docx/body-reader.js
@@ -567,7 +567,8 @@ function BodyReader(options) {
567
568
function removeVMergeProperties(rows) {
569
rows.forEach(function(row) {
570
- row.children.forEach(function(cell) {
+ var cells = transforms.getDescendantsOfType(row, documents.types.tableCell);
571
+ cells.forEach(function(cell) {
572
delete cell._vMerge;
573
});
574
0 commit comments