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 If newline exists between checkbox list, it looks like doesn't render well
To Reproduce
- Tasks - [x] Task1 - [ ] Task2 - [ ] Another Task
The text was updated successfully, but these errors were encountered:
task list items is a GFM extension which is why they don't render as checkboxes in the CommonMark Demo
in GFM they render as:
Tasks
Task1
Task2
Another Task
When a blank line is in the middle of a list it is considered a loose list so each list item is wrapped in a <p> tag.
<p>
It looks like marked doesn't include the checkbox in the <p> tag.
Sorry, something went wrong.
PR #1535 should fix this
demo
Successfully merging a pull request may close this issue.
Describe the bug
If newline exists between checkbox list, it looks like doesn't render well
To Reproduce
The text was updated successfully, but these errors were encountered: