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
If we type in the editor some text that is followed by a list with blank first item, we get the following markdown:
Text\n-\n- item
Which causes "Text" to become a heading (because -- characters below a line create a heading per alternate syntax for headings):
Text item
And the ordered list with blank first item is not recognised as a list, for example.
To work properly, the resulting markdown should contain a blank line before any list. Text\n\n-\n- item:
Text\n\n-\n- item
Text
The text was updated successfully, but these errors were encountered:
No branches or pull requests
If we type in the editor some text that is followed by a list with blank first item, we get the following markdown:
Text\n-\n- item
Which causes "Text" to become a heading (because -- characters below a line create a heading per alternate syntax for headings):
And the ordered list with blank first item is not recognised as a list, for example.
To work properly, the resulting markdown should contain a blank line before any list.
Text\n\n-\n- item
:The text was updated successfully, but these errors were encountered: