You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On a project I'm working on when we load HTML generated by a previous editor in we have occasional cases where a nested list is marked up "the old way", like this:
This style of nesting used to be valid but in newer HTML you are to nest the <ul> inside a <li>. When quill encounters this, in at least Chrome, it throws an exception like #182
Would fixing the markup at runtime be too out of scope for Quill? After all, we can't always control what old HTML may get loaded into Quill.
The text was updated successfully, but these errors were encountered:
jhchen
changed the title
Improperly nested ul/li will crash the editor
Improperly nested ul/li throws exception
Feb 24, 2016
On a project I'm working on when we load HTML generated by a previous editor in we have occasional cases where a nested list is marked up "the old way", like this:
This style of nesting used to be valid but in newer HTML you are to nest the
<ul>
inside a<li>
. When quill encounters this, in at least Chrome, it throws an exception like #182Would fixing the markup at runtime be too out of scope for Quill? After all, we can't always control what old HTML may get loaded into Quill.
The text was updated successfully, but these errors were encountered: