1. [] normal numbered item with checkbox
- normal bullet
- [] example bulleted checkbox
[] example bulleted item 2
- [] example bulleted item 3
- [] example bulleted item 4
- [] example bulleted item 5
ul li.has-checkbox .list-item-checkbox {
position: relative;
left: 0;
}
.cooked ul li.has-checkbox,
.d-editor-preview ul li.has-checkbox {
position: relative;
list-style-type: disc;
}
.cooked ul ul li.has-checkbox,
.d-editor-preview ul ul li.has-checkbox {
list-style-type: circle;
}
.cooked ul ul ul li.has-checkbox,
.d-editor-preview ul ul ul li.has-checkbox {
list-style-type: square;
}
- '[] point 1
- '[] point 2
- '[] point 3
- '[] point 4
' point 1
' point 2
' point 3
' point 4
<!--
This markdown code:
-->
- '[] point
<!-- should become HTML: (note: no single quote visible) -->
<ul>
<li><span class="chcklst-box fa fa-square-o fa-fw"></span> point</li>
</ul>
<!-- instead of this HTML: (note: single quote still visible) -->
<ul>
<li>'<span class="chcklst-box fa fa-square-o fa-fw"></span> point</li>
</ul>