#2733 Add error if level exceeds 9
This commit is contained in:
@ -161,6 +161,12 @@ export class LevelBase extends XmlComponent {
|
||||
this.root.push(this.paragraphProperties);
|
||||
this.root.push(this.runProperties);
|
||||
|
||||
if (level > 9) {
|
||||
throw new Error(
|
||||
"Level cannot be greater than 9. Read more here: https://answers.microsoft.com/en-us/msoffice/forum/all/does-word-support-more-than-9-list-levels/d130fdcd-1781-446d-8c84-c6c79124e4d7",
|
||||
);
|
||||
}
|
||||
|
||||
this.root.push(
|
||||
new LevelAttributes({
|
||||
ilvl: decimalNumber(level),
|
||||
|
Reference in New Issue
Block a user