Skip to content

Commit d50a25e

Browse files
committed
Improve merging of math lists (mathjax/MathJax#3301).
1 parent 43bb7d9 commit d50a25e

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

ts/handlers/html/HTMLDocument.ts

+8-6
Original file line numberDiff line numberDiff line change
@@ -124,14 +124,16 @@ export class HTMLDocument<N, T, D> extends AbstractMathDocument<N, T, D> {
124124
nodes: HTMLNodeArray<N, T>
125125
): Location<N, T> {
126126
const adaptor = this.adaptor;
127-
for (const list of nodes[N]) {
128-
const [node, n] = list;
127+
const inc = 1 / (nodes[N].length || 1);
128+
let i = N;
129+
for (const [node, n] of nodes[N]) {
129130
if (index <= n && adaptor.kind(node) === '#text') {
130-
return { node: node, n: Math.max(index, 0), delim: delim };
131+
return { i, node, n: Math.max(index, 0), delim };
131132
}
132133
index -= n;
134+
i += inc;
133135
}
134-
return { node: null, n: 0, delim: delim };
136+
return { node: null, n: 0, delim };
135137
}
136138

137139
/**
@@ -298,9 +300,9 @@ export class HTMLDocument<N, T, D> extends AbstractMathDocument<N, T, D> {
298300
/**
299301
* @param {N} head The document <head>
300302
* @param {string} id The id of the stylesheet to find
301-
* @param {N|null} The stylesheet with the given ID
303+
* @returns {N|null} The stylesheet with the given ID
302304
*/
303-
protected findSheet(head: N, id: string) {
305+
protected findSheet(head: N, id: string): N | null {
304306
if (id) {
305307
for (const sheet of this.adaptor.tags(head, 'style')) {
306308
if (this.adaptor.getAttribute(sheet, 'id') === id) {

0 commit comments

Comments
 (0)