-
Notifications
You must be signed in to change notification settings - Fork 52
Can't make list of numbers #96
Copy link
Copy link
Open
Labels
bugSomething isn't workingSomething isn't working
Description
Describe the bug
Can't create list of numeric items. Discovered when trying to list versions of software
To Reproduce
>>> from mdutils.mdutils import MdUtils
>>> mdf = MdUtils('foo.md', title='Foo')
>>> mdf.new_list(['foo', 'bar'])
>>> mdf.new_list(['1.2', '1.3'])
>>> mdf.create_md_file()
results:
Foo
===
- foo
- bar
1.2
1.3
Expected behavior
Foo
===
- foo
- bar
- 1.2
- 1.3
Desktop (please complete the following information):
- macOS 12.6.5 (21G531)
- Python 3.11.1
- mdutils-1.6.0
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working