markdown icon indicating copy to clipboard operation
markdown copied to clipboard

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

Open tomyeh opened this issue 10 months ago • 0 comments

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 avatar Mar 28 '24 03:03 tomyeh