Fix editing <ol> tags with a non-1 start attribute (#8211)
This commit is contained in:
parent
17cfd45eb3
commit
04e79dffae
1 changed files with 1 additions and 1 deletions
|
@ -218,7 +218,7 @@ function parseNode(n: Node, pc: PartCreator, mkListItem?: (li: Node) => Part[]):
|
|||
return parts;
|
||||
}
|
||||
case "OL": {
|
||||
let counter = 1;
|
||||
let counter = (n as HTMLOListElement).start ?? 1;
|
||||
const parts = parseChildren(n, pc, li => {
|
||||
const parts = [pc.plain(`${counter}. `), ...parseChildren(li, pc)];
|
||||
counter++;
|
||||
|
|
Loading…
Reference in a new issue