-
Notifications
You must be signed in to change notification settings - Fork 35
Open
Description
Hi, thanks for the great extension!
I was wondering if support could be added for nested checklists:
- [x] top
- [x] level
- [ ] items
- [ ] second level
- [ ] third levelwould become
<ul class="checklist">
<li><input type="checkbox" disabled checked>top</li>
<li><input type="checkbox" disabled checked>level</li>
<li><input type="checkbox" disabled>items
<ul class="checklist">
<li><input type="checkbox" disabled>second level
<ul class="checklist">
<li><input type="checkbox" disabled>third level</li>
</ul>
</li>
</ul>
</li>
</ul>It's currently implemented in Github markdown:
- first level
- second level
How difficult would something like this be to add? Or maybe it already works and I just am getting the syntax wrong?
Thanks again!
Metadata
Metadata
Assignees
Labels
No labels