File: task_lists.test

package info (click to toggle)
haskell-djot 0.1.2.4-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 560 kB
  • sloc: haskell: 3,440; makefile: 3
file content (31 lines) | stat: -rw-r--r-- 626 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
```
- [ ] an unchecked task list item
- [x] checked item
.
<ul class="task-list">
<li class="unchecked">
<label><input type="checkbox" />an unchecked task list item</label>
</li>
<li class="checked">
<label><input type="checkbox" checked="" />checked item</label>
</li>
</ul>
```

```
* [ ] an unchecked task list item

  with two paragraphs

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