Skip to content

Latest commit

 

History

History
93 lines (75 loc) · 1.95 KB

task_lists.md

File metadata and controls

93 lines (75 loc) · 1.95 KB

Task lists

As in GitHub-flavored Markdown.

- [ ] an unchecked task list item
- [x] checked item
.
<ul class="task-list">
<li><input type="checkbox" disabled="" />an unchecked task list item</li>
<li><input type="checkbox" disabled="" checked="" />checked item</li>
</ul>
* [ ] an unchecked task list item

  with two paragraphs

* [x] checked item
.
<ul class="task-list">
<li><input type="checkbox" disabled="" /><p>an unchecked task list item</p>
<p>with two paragraphs</p>
</li>
<li><input type="checkbox" disabled="" checked="" /><p>checked item</p>
</li>
</ul>
- [x]unreal
.
<ul>
<li>[x]unreal</li>
</ul>
-  [x] real

  not indented enough
.
<ul class="task-list">
<li><input type="checkbox" disabled="" checked="" />real</li>
</ul>
<p>not indented enough</p>
- [x] * some text
- [ ] > some text
- [x]
  * some text
- [ ]
  > some text
.
<ul class="task-list">
<li><input type="checkbox" disabled="" checked="" />* some text</li>
<li><input type="checkbox" disabled="" />&gt; some text</li>
<li><input type="checkbox" disabled="" checked="" /><ul>
<li>some text</li>
</ul></li>
<li><input type="checkbox" disabled="" /><blockquote>
<p>some text</p>
</blockquote></li>
</ul>

There is no empty paragraph after the ].

- [x] * some text

- [x]

  some text

- [x]→

  some text
.
<ul class="task-list">
<li><input type="checkbox" disabled="" checked="" /><p>* some text</p></li>
<li><input type="checkbox" disabled="" checked="" /><p>some text</p>
</li>
<li><input type="checkbox" disabled="" checked="" /><p>some text</p>
</li>
</ul>