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
When using $generateHtmlFromNodes in Lexical, nested ordered lists are incorrectly numbered. The issue occurs when a nested
Lexical version: 0.22.0
Link to code example:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When using $generateHtmlFromNodes in Lexical, nested ordered lists are incorrectly numbered. The issue occurs when a nested
is wrapped inside a parent- , causing the numbering to break. Specifically, the parent list incorrectly assigns a duplicate number to an item after a nested list.
- Create an ordered list with a nested list inside one of the items.
- Convert it to HTML using $generateHtmlFromNodes.
- Observe that numbering is incorrect, with a duplicate number appearing in the parent list.
- Canada
- USA
- Germany
- Italy
- canada
- usa
-
- LA
- TX
- FL
- Germany
- Italy
- canada
- usa
- LA
- TX
- FL
- Germany
- Italy

Lexical version: 0.22.0
Steps To Reproduce
Link to code example:
a. LA
b. TX
c. FL
The current behavior
The expected behavior
The text was updated successfully, but these errors were encountered: