editor-js / list

Advanced List tool for the Editor.js.
MIT License
48 stars 47 forks source link

Mix unordered and ordered list #64

Open bettysteger opened 11 months ago

bettysteger commented 11 months ago

I have the following HTML:

<ol>
  <li>
    list
    <ul>
      <li>1st</li>
      <li>2nd</li>
    </ul>
  </li>
  <li>
    let'see
    <ol>
      <li>if this works</li>
    </ol>
  </li>
</ol>

and have to renderFromHTML to convert the nested lists, if it is not mixed it works, but when i have a nested unordered list in an ordered list, the list items disappear:

image