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
It's probably because your HTML is invalid (no closing <li> tags)
Or maybe since you didn't use code blocks in your comment, it printed them weird, like the first version of this message.
when using the following inputs, the output put one list inside the other
Version 1:
<ul>
<li style="text-align: justify;">a title
</ul>
<ul style="list-style-type: circle;">
<li>a text
</ul>
Version 2:
<ul>
<li>other title
</ul>
<ul style="list-style-type: circle">
<li>other text
</ul>
Result:
aaother textThe text was updated successfully, but these errors were encountered: