StudyGrow / Cards

MIT License
1 stars 0 forks source link

Nested lists not working #177

Open lakhoune opened 2 years ago

lakhoune commented 2 years ago

For cards that have nested lists. The editor correctly displays them in the editor itself, but if you inspect them you see that even in the editor, they are actually not nested. The editor will contain something as follows:

<ul>...</ul>
<ol>...</ol>
<ul>...</ul>

That is shown as a nested list in the view while the template is not. The template should look as follows:

<ul> 
       ...
      <ol>...</ol>
      ...
</ul>