MCPcopy Create free account
hub / github.com/TruthHun/BookStack / readTableRow

Function readTableRow

static/word2md/mammoth.browser.js:1129–1135  ·  view source on GitHub ↗
(element)

Source from the content-addressed store, hash-verified

1127 }
1128
1129 function readTableRow(element) {
1130 var properties = element.firstOrEmpty("w:trPr");
1131 var isHeader = !!properties.first("w:tblHeader");
1132 return readXmlElements(element.children).map(function(children) {
1133 return documents.TableRow(children, {isHeader: isHeader});
1134 });
1135 }
1136
1137 function readTableCell(element) {
1138 return readXmlElements(element.children).map(function(children) {

Callers

nothing calls this directly

Calls 1

readXmlElementsFunction · 0.70

Tested by

no test coverage detected