-
Notifications
You must be signed in to change notification settings - Fork 122
Nested lists get removed #126
Copy link
Copy link
Closed
Labels
Description
When going from visual mode to HTML, the inner nested lists get removed.
Expected
<ul>
<li>Item
<ul>
<li>Inner item</li>
</ul>
</li>
</ul>
Observed
<ul>
<li>Item</li>
</ul>Inner item
Reproduced
- Start with a nested list inside a list
- Switch to visual mode
- Switch back to HTML mode and notice the change
Reactions are currently unavailable