mrjvs / neatojs

Collection of neat JS tools
https://neatojs.com/
MIT License
27 stars 3 forks source link

Lists have weird numbering #42

Closed mrjvs closed 6 months ago

mrjvs commented 6 months ago

Describe the bug

Unordered lists nested inside ordered lists act weird:

Which package/app is affected (leave empty if unsure)

@neato/guider

Link to the code that reproduces this issue

No response

Steps to reproduce

  1. Use this code in a markdown file
  2. item one
    • nested item one
    • nested item two
  3. item two
  4. it outputs:
  5. item one
    1. nested item one
    2. nested item two
  6. item two

Expected Behavior

it should output:

1. item one
  - nested item one
  - nested item two
2. item two

Extra details

No response