node.tbody.appendChild(tr);
for (let j=0; j<row.length; ++j) {
const a = node.alignments[j];
const c = row[j];
const td = this.args.tdParser.instantiate(parser.getRangeStart(0));
td.alignment = a;
td.stringContent = c;
//parser.processInlines(td);
tr.appendChild(td);
}
The problem here is that all td elements have the same range, when they actually start at different ranges.
Figuring out the exact start will probably be a huge pain
The problem here is that all
tdelements have the samerange, when they actually start at different ranges.Figuring out the exact start will probably be a huge pain