Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

list items of nested lists get indented backwards #1501

Closed
garretwilson opened this issue Aug 23, 2018 · 0 comments
Closed

list items of nested lists get indented backwards #1501

garretwilson opened this issue Aug 23, 2018 · 0 comments

Comments

@garretwilson
Copy link

In v1.8.0-rc.13 there is a pretty big regression for indenting nested lists. The algorithm now seems to get confused about list levels, and list items in the nested lists get indented backwards! So this:

<ol>
  <li>Foo.
    <ul>
      <li>blah</li>
      <li>blah</li>
      <li>blah</li>
    </ul>
  </li>
  <li>Bar.</li>
</ol>

Gets changed to this:

<ol>
  <li>Foo.
    <ul>
  <li>blah</li>
  <li>blah</li>
  <li>blah</li>
  </ul>
  </li>
  <li>Bar.</li>
</ol>

Note also the </ul> isn't aligned.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants