We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
getRangeStart
td
TableParser
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.
range
Figuring out the exact start will probably be a huge pain
The text was updated successfully, but these errors were encountered:
AnyhowStep
No branches or pull requests
The problem here is that all
td
elements have the samerange
, when they actually start at different ranges.Figuring out the exact start will probably be a huge pain
The text was updated successfully, but these errors were encountered: