We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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):
The text was updated successfully, but these errors were encountered:
For anyone else needing to work around this problem, prefix each items with a space
mdf.new_list(items=[' ' + v for v in versions])
Sorry, something went wrong.
Thanks for reporting it, I'll take a look.
didix21
No branches or pull requests
Describe the bug
Can't create list of numeric items. Discovered when trying to list versions of software
To Reproduce
results:
Expected behavior
Desktop (please complete the following information):
The text was updated successfully, but these errors were encountered: