The list plugin now includes configurable indentation level restrictions to prevent excessive nesting of list items. This change helps maintain cleaner document structure and improves compatibility with various export formats.
[source, javascript]
----
// Configure maximum list indentation levels
tinymce.init({
list_max_length: 3 // Restricts list indentation to 3 levels
});
----
**Impact**: Lists will no longer indent beyond the configured maximum level.
**Migration checklist:**
* [ ] Audit existing content for deeply nested lists
* [ ] Determine appropriate maximum indentation level for your use case