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
There appears to be a bug with list handling. I am using atom-beautify in atom, which is using tidy-markdown for markdown support.
If I start with this:
1. Do this first 2. And then this - Bucket - List
The first time I run tidy-markdown, I get this:
1. Do this first - And then this - Bucket 2. List
The above renders to a numbered list when parsed. So, as expected, the markdown is converted to this when I run tidy-markdown a second time:
1. Do this first 2. And then this 3. Bucket 4. List
Nested lists are handled correctly. The following is not modified when tidy-markdown is run.
It seems the solution to this would be to differentiate between numbered lists and bulleted lists and not attempt to merge them.
The text was updated successfully, but these errors were encountered:
ah, yes... this is a flaw in markdown itself:
also: ref #7
I think I'm just going to switch to a common-markdown compliant parser
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
There appears to be a bug with list handling. I am using atom-beautify in atom, which is using tidy-markdown for markdown support.
If I start with this:
The first time I run tidy-markdown, I get this:
The above renders to a numbered list when parsed. So, as expected, the markdown is converted to this when I run tidy-markdown a second time:
Nested lists are handled correctly. The following is not modified when tidy-markdown is run.
It seems the solution to this would be to differentiate between numbered lists and bulleted lists and not attempt to merge them.
The text was updated successfully, but these errors were encountered: