Skip to content
New issue

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

Checkbox List shall put the INPUT element inside the P element if an extra blank line is put between list items #601

Closed
tomyeh opened this issue Mar 28, 2024 · 0 comments · Fixed by #602

Comments

@tomyeh
Copy link
Contributor

tomyeh commented Mar 28, 2024

Example,

- [ ] A

- [ ] B

generates

Screenshot 2024-03-28 at 11 22 15 AM

<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox"></input>
<p>A</p>
</li>
<li class="task-list-item"><input type="checkbox"></input>
<p>B</p>
</li>
</ul>

Rather, it shall be

<ul class="contains-task-list">
<li class="task-list-item">
<p><input type="checkbox"></input>A</p>
</li>
<li class="task-list-item">
<p><input type="checkbox"></input>B</p>
</li>
</ul>
tomyeh added a commit to tomyeh/markd that referenced this issue Mar 28, 2024
srawlins pushed a commit that referenced this issue May 22, 2024
* Fix #586: encode image tag's src attribute

* Fix #601: checkbox list separated with blank lines
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant